Wait 20 seconds before deleting temporary forms

Those temporary forms are created to download attachments.
Fixes #2811
pull/42/head
Francis Lachapelle 2014-06-16 09:52:29 -04:00
parent 5bb64916c6
commit d9b578b869
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -12,6 +12,7 @@ Bug fixes
- fixed folder name (calendars and contacts) of new subscriptions (#2801) - fixed folder name (calendars and contacts) of new subscriptions (#2801)
- fixed the reply/forward operation over ActiveSync (#2805) - fixed the reply/forward operation over ActiveSync (#2805)
- fixed regression when attaching files to a reply - 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) 2.2.5 (2014-06-05)
------------------ ------------------

View File

@ -1749,7 +1749,7 @@ function download(url) {
setTimeout(function () { setTimeout(function () {
form.remove(); form.remove();
div.remove(); div.remove();
}, 2000); }, 20000);
} }
function saveAttachment(event) { function saveAttachment(event) {