diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-12 17:56:07 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-12 17:56:07 +0200 |
commit | 7d3d62e5ed98cfed8b46bbb1c620142f190d2c03 (patch) | |
tree | bc0136e64dbe920eb033d678767770047a91852e /program/js/app.js | |
parent | b693dcf4e3981425df7b3cda504cab3966d32ebe (diff) |
Fix unintentional draft autosave request if autosave is disabled (#1489882)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 042ebb724..9aa0942f1 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3703,12 +3703,13 @@ function rcube_webmail() this.auto_save_start = function() { - if (this.env.draft_autosave) + if (this.env.draft_autosave) { this.draft_autosave_submit = false; this.save_timer = setTimeout(function(){ ref.draft_autosave_submit = true; // set auto-saved flag (#1489789) ref.command("savedraft"); }, this.env.draft_autosave * 1000); + } // save compose form content to local storage every 5 seconds if (!this.local_save_timer && window.localStorage) { |