mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-06 17:05:10 +00:00
Wait 20 seconds before deleting temporary forms
Those temporary forms are created to download attachments. Fixes #2811
This commit is contained in:
@@ -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)
|
||||
------------------
|
||||
|
||||
@@ -1749,7 +1749,7 @@ function download(url) {
|
||||
setTimeout(function () {
|
||||
form.remove();
|
||||
div.remove();
|
||||
}, 2000);
|
||||
}, 20000);
|
||||
}
|
||||
|
||||
function saveAttachment(event) {
|
||||
|
||||
Reference in New Issue
Block a user