diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-11-22 09:04:29 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-11-22 09:04:29 +0100 |
commit | 34003c5fa5dfc6bd4206e50a49b7a5439a05c148 (patch) | |
tree | 7e08425b6f7ef55ee633939d6c588692fa819b77 /program/js/app.js | |
parent | b7fb20af3a5c98f291204befdb616fdf5daa22fb (diff) |
Display status messages as pile of black bars overlaying the UI in order to improve visibility (#1488974)
Diffstat (limited to 'program/js/app.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; }; |