diff options
author | thomascube <thomas@roundcube.net> | 2011-11-23 17:29:03 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-11-23 17:29:03 +0000 |
commit | 4693fe11a95ee1bc3912a5ee2b3ed41c8b0b6b92 (patch) | |
tree | 3fd0ff57860a0feef1cae33e44524fc478534d42 | |
parent | f45074341c84a23720874ab647a0a602a16e41f5 (diff) |
Set selected state on task buttons; increase display time of messages/notifications
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 1be200933..a93a476ed 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -37,7 +37,7 @@ function rcube_webmail() // webmail client settings this.dblclick_time = 500; - this.message_time = 2000; + this.message_time = 4000; this.identifier_expr = new RegExp('[^0-9a-z\-_]', 'gi'); @@ -5142,6 +5142,9 @@ function rcube_webmail() init_button(cmd, this.buttons[cmd][i]); } } + + // set active task button + this.set_button(this.task, 'sel'); }; // set button to a specific state |