diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-07-08 18:22:40 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-07-08 18:22:40 +0200 |
commit | d81539af3135428fafe5ea9764755aa1a697cbb4 (patch) | |
tree | d0029ad53beefdc87bbc8f2bec46c579fbbc8f2c /program/js/app.js | |
parent | d19a9b35cc3fa0f25467107d55fbbd0ed4578cc4 (diff) |
Fix bug where compose storage wasn't cleared on page unload (#1489818)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index 31c23dd0e..c635f6002 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -655,9 +655,6 @@ function rcube_webmail() if (this.task == 'mail' && this.env.action == 'compose' && $.inArray(command, this.env.compose_commands) < 0 && !this.env.server_error) { if (this.cmp_hash != this.compose_field_hash() && !confirm(this.get_label('notsentwarning'))) return false; - - // remove copy from local storage if compose screen is left intentionally - this.remove_compose_data(this.env.compose_id); } this.last_command = command; @@ -3803,6 +3800,11 @@ function rcube_webmail() ref.compose_type_activity_last = ref.compose_type_activity; } }, 5000); + + // remove data from local storage if compose screen is left + $(window).unload(function() { + ref.remove_compose_data(ref.env.compose_id); + }); } // Unlock interface now that saving is complete |