From ab0b51a1fef87bcc643c3aaf2e635c811b28ccd8 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Tue, 15 Feb 2011 06:10:59 -0500 Subject: [PATCH] - Use only one from IMAP authentication methods to prevent login delays (1487784) --- program/js/editor.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/program/js/editor.js b/program/js/editor.js index 2ee4ac1..c0f54b8 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -3,7 +3,7 @@ | Roundcube editor js library | | | | This file is part of the Roundcube web development suite | - | Copyright (C) 2006, Roundcube Dev, - Switzerland | + | Copyright (C) 2006, The Roundcube Dev Team | | Licensed under the GNU GPL | | | +-----------------------------------------------------------------------+ @@ -71,8 +71,10 @@ if (elem && elem.type == 'select-one') { rcmail.change_identity(elem); // Focus previously focused element - if (fe && fe.id != rcmail.env.composebody) + if (fe && fe.id != rcmail.env.composebody) { + window.focus(); // for WebKit (#1486674) fe.focus(); + } } // set tabIndex and set focus to element that was focused before -- Gitblit v1.9.1