summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-03-26 19:06:11 +0100
committerAleksander Machniak <alec@alec.pl>2013-03-26 19:06:11 +0100
commit3ca58cd22cae4cbc07479792f4ff4258aad785af (patch)
treef2e842d9a5dc2b48d41b7ef3f34e79e5c3f44517 /program/js/app.js
parent39062647473c7ff105fff7e5295ee9c0ca931e32 (diff)
Better fix for "saving draft just after entering compose window (#1489012)"
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 9e05233f1..b2a6a0409 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -986,7 +986,7 @@ function rcube_webmail()
clearTimeout(this.save_timer);
// compose form did not change (and draft wasn't saved already)
- if (this.draft_saved && this.cmp_hash == this.compose_field_hash()) {
+ if (this.env.draft_id && this.cmp_hash == this.compose_field_hash()) {
this.auto_save_start();
break;
}
@@ -3302,7 +3302,7 @@ function rcube_webmail()
this.set_draft_id = function(id)
{
- this.draft_saved = id;
+ this.env.draft_id = id;
$("input[name='_draft_saveid']").val(id);
};