www

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

commit 4d9191ccd89fa6b77ab13aa87a5adce5cc5d3076
parent d1e2ea57a57daf613c297b7a4e888570df01c15b
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sun, 30 Jun 2013 01:46:50 -0400

Fixes #343, Add Item by Identifier textbox is truncated on second open

Diffstat:
Mchrome/content/zotero/lookup.js | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/chrome/content/zotero/lookup.js b/chrome/content/zotero/lookup.js @@ -173,7 +173,11 @@ const Zotero_Lookup = new function () { */ this.onShowing = function() { document.getElementById("zotero-lookup-panel").style.padding = "10px"; - + + // Workaround for field being truncated in middle + // https://github.com/zotero/zotero/issues/343 + this.toggleMultiline(true); + var identifierElement = Zotero_Lookup.toggleMultiline(false); Zotero_Lookup.toggleProgress(false); identifierElement.focus();