diff options
author | alecpl <alec@alec.pl> | 2010-10-05 07:06:51 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-05 07:06:51 +0000 |
commit | 538e1c85d214e1ac9e261e8cd20c369a312d4900 (patch) | |
tree | 877de29092495a3d6bd3e3973fdf929b9b409e50 /program/js | |
parent | 103ddcde87f77da28fa2c1f7942763db1c65b34a (diff) |
- Fix confirmation message isn't displayed after sending mail on Chrome (#1486177)
Diffstat (limited to 'program/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 4388c5094..83a6df2e3 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3267,8 +3267,9 @@ function rcube_webmail() this.sent_successfully = function(type, msg) { - this.list_mailbox(); this.display_message(msg, type, true); + // before redirect we need to wait some time for Chrome (#1486177) + window.setTimeout(function(){ ref.list_mailbox(); }, 500); }; |