www

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

commit 9fb42b6788f53885998d50a94fe5efff76094f71
parent 08562e50cd1997de27c7b849d2a0231484e457f9
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri,  8 Jan 2016 04:29:23 -0500

Fixes #890, Use text area for Book Title

Diffstat:
Mchrome/content/zotero/xpcom/data/itemFields.js | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/data/itemFields.js b/chrome/content/zotero/xpcom/data/itemFields.js @@ -345,7 +345,8 @@ Zotero.ItemFields = new function() { this.isLong = function (field) { field = this.getName(field); var fields = [ - 'title' + 'title', + 'bookTitle' ]; return fields.indexOf(field) != -1; }