diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-15 17:26:01 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-15 17:26:01 +0000 |
| commit | bca3946ee720cbd5c2f4cccbcda07d4fef3a1e01 (patch) | |
| tree | 50525e9cd03ff091d10207d32aa237964c49ef6f /roundcubemail/skins/larry/ui.js | |
| parent | 770d15e80e476f9cecc02232e825473b9b25242c (diff) | |
Make sure message popups show at least 2sec; adjust message list column sizes
git-svn-id: https://svn.roundcube.net/trunk@5775 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/skins/larry/ui.js')
| -rw-r--r-- | roundcubemail/skins/larry/ui.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/skins/larry/ui.js b/roundcubemail/skins/larry/ui.js index 6af37c6ce..f4d44af48 100644 --- a/roundcubemail/skins/larry/ui.js +++ b/roundcubemail/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)); } } |
