diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-11-22 09:24:32 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-11-22 09:24:32 +0100 |
commit | b5117238db2917789ef7657bc9eafe5fd3adfe1f (patch) | |
tree | 5f93d248e9bd9e194de867855b874c32363c9f06 /program/js | |
parent | aac4b452a3a538ecf6abdfcf100c7d9d33aadd1f (diff) | |
parent | ecb5bd7bd139a45b6c1a4f6e002b3b10e3311da7 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 372a29906..636db82d4 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -34,7 +34,7 @@ function rcube_webmail() // webmail client settings this.dblclick_time = 500; - this.message_time = 4000; + this.message_time = 5000; this.identifier_expr = new RegExp('[^0-9a-z\-_]', 'gi'); // environment defaults @@ -6209,7 +6209,7 @@ function rcube_webmail() this.triggerEvent('message', { message:msg, type:type, timeout:timeout, object:obj }); if (timeout > 0) - setTimeout(function() { ref.hide_message(id, type == 'loading'); }, timeout); + setTimeout(function() { ref.hide_message(id, type != 'loading'); }, timeout); return id; }; |