diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-06 11:34:35 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-06 11:34:35 +0200 |
commit | 30eb9eee28f962048d638e6d13598e33fcf29ddc (patch) | |
tree | e28e2c55ca2ac57fdf860fdf1467e3e574be750d | |
parent | 7794ae1387c1f96d0e7a3e73e3fb3729649f1621 (diff) |
Suppress error message popups on login screen
-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 906ea6e7f..894278a9a 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -263,7 +263,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'); } |