summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-05 07:06:51 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-05 07:06:51 +0000
commit098e18592f103851865dd784858bc7bebffdae75 (patch)
tree12dfb384fb7c2e79bbf61d1ed70e2412be9c8ebc /roundcubemail/program/js
parent41b109fcba44afa8de078196d8e86855af83643e (diff)
- Fix confirmation message isn't displayed after sending mail on Chrome (#1486177)
git-svn-id: https://svn.roundcube.net/trunk@4036 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 4388c5094..83a6df2e3 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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);
};