diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-06 11:34:35 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-06 12:56:54 +0200 |
commit | de485f883e25fcac75203264e336a3945db0d690 (patch) | |
tree | 1778d54640446f2cc190d03f706b3f6906d9632f /skins/larry | |
parent | 8fdb332a20fec1988a6ec76fc83c3a4eb28ed1c8 (diff) |
Suppress error message popups on login screen
Diffstat (limited to 'skins/larry')
-rw-r--r-- | skins/larry/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 7c66e01ae..6cc4d1d7e 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -265,7 +265,7 @@ function rcube_mail_ui() function message_displayed(p) { // show a popup dialog on errors - if (p.type == 'error') { + if (p.type == 'error' && rcmail.env.task != 'login') { if (!me.messagedialog) { me.messagedialog = $('<div>').addClass('popupdialog'); } |