From 4dbc961b116f02f85d87d6a51446ba4b64bbc1ba Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Wed, 11 Apr 2012 11:32:01 -0400 Subject: [PATCH] Set flexible width to login form fields (#1488418); remove IE7 warning --- skins/larry/ui.js | 18 ------------------ 1 files changed, 0 insertions(+), 18 deletions(-) diff --git a/skins/larry/ui.js b/skins/larry/ui.js index dda5abd..cf7ff55 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -160,24 +160,6 @@ new rcube_scroller('#directorylist-content', '#directorylist-header', '#directorylist-footer'); } } - /*** login page ***/ - else if (rcmail.env.task == 'login') { - if (bw.ie && bw.vendver < 8) { - var popup = $('<div>') - .addClass('readtext') - .html("Roundcube will not work well with the crappy browser ya' using. Get yourself a new internet browsing software and don't come back without!<p>Sincerly,<br/>the Roundcube Dev Team</p>") - .appendTo(document.body) - .dialog({ - dialogClass: 'alert', - closeOnEscape: true, - title: "No way, are you serious?", - close: function() { - popup.dialog('destroy').remove(); - }, - width: 450 - }); - } - } // turn a group of fieldsets into tabs $('.tabbed').each(function(idx, elem){ init_tabs(elem); }) -- Gitblit v1.9.1