www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 918cb2ef1b8becebaabe47d9353bbd93b39aac24
parent dba00c7ceaf8bedbe8eec3ac366aeb985a9b64b3
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 19 Feb 2013 05:01:37 -0500

Fix focusing of WebDAV password field on verification auth failure

Diffstat:
Mchrome/content/zotero/preferences/preferences.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/preferences/preferences.js b/chrome/content/zotero/preferences/preferences.js @@ -397,8 +397,8 @@ function verifyStorageServer() { case Zotero.Sync.Storage.ERROR_NO_PASSWORD: case Zotero.Sync.Storage.ERROR_AUTH_FAILED: onDone = function () { - passwordField.focus; - } + passwordField.focus(); + }; break; }