From d9b578b869da27b876f019bc10acf72839220fd3 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Mon, 16 Jun 2014 09:52:29 -0400 Subject: [PATCH] Wait 20 seconds before deleting temporary forms Those temporary forms are created to download attachments. Fixes #2811 --- NEWS | 1 + UI/WebServerResources/MailerUI.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5eb1e8fd1..1764f7ccf 100644 --- a/NEWS +++ b/NEWS @@ -12,6 +12,7 @@ Bug fixes - fixed folder name (calendars and contacts) of new subscriptions (#2801) - fixed the reply/forward operation over ActiveSync (#2805) - fixed regression when attaching files to a reply + - wait 20 seconds (instead of 2) before deleting temporary download forms (#2811) 2.2.5 (2014-06-05) ------------------ diff --git a/UI/WebServerResources/MailerUI.js b/UI/WebServerResources/MailerUI.js index 2c0575995..4f87b2a84 100644 --- a/UI/WebServerResources/MailerUI.js +++ b/UI/WebServerResources/MailerUI.js @@ -1749,7 +1749,7 @@ function download(url) { setTimeout(function () { form.remove(); div.remove(); - }, 2000); + }, 20000); } function saveAttachment(event) {