diff options
author | thomascube <thomas@roundcube.net> | 2012-01-15 17:26:01 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-15 17:26:01 +0000 |
commit | e493c842a5d5915e95a22df9bc824ef786915cca (patch) | |
tree | 03104f6f7a6bcdd6ef6a210eac7921947b7cebe0 /skins/larry/ui.js | |
parent | 1224463db79a3a0eacbdf123ad01d5b1d2ca9098 (diff) |
Make sure message popups show at least 2sec; adjust message list column sizes
Diffstat (limited to 'skins/larry/ui.js')
-rw-r--r-- | skins/larry/ui.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 6af37c6ce..f4d44af48 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -234,8 +234,8 @@ function rcube_mail_ui() width: 420, minHeight: 90 }).show(); - - window.setTimeout(function(){ me.messagedialog.dialog('close'); }, p.timeout / 2); + + window.setTimeout(function(){ me.messagedialog.dialog('close'); }, Math.max(2000, p.timeout / 2)); } } |