diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-06 11:10:26 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-06 12:56:42 +0200 |
commit | 8fdb332a20fec1988a6ec76fc83c3a4eb28ed1c8 (patch) | |
tree | 6e4bc3551ec85ccfb6b135c5fadeeabbbfd1d01d /program/js | |
parent | 969ff01ac8f1712540f4f05d116618b028c7af27 (diff) |
Fix connection error alerts when page unloads (#1488547)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 8d02f6f39..ae9f4e972 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -60,6 +60,8 @@ function rcube_webmail() beforeSend: function(xmlhttp){ xmlhttp.setRequestHeader('X-Roundcube-Request', ref.env.request_token); } }); + $(window).bind('beforeunload', function() { rcmail.unload = true; }); + // set environment variable(s) this.set_env = function(p, value) { @@ -6129,6 +6131,10 @@ function rcube_webmail() this.set_busy(false, null, lock); request.abort(); + // don't display error message on page unload (#1488547) + if (this.unload) + return; + if (request.status && errmsg) this.display_message(this.get_label('servererror') + ' (' + errmsg + ')', 'error'); else if (status == 'timeout') |