From 9fb42b6788f53885998d50a94fe5efff76094f71 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 8 Jan 2016 04:29:23 -0500 Subject: [PATCH] Fixes #890, Use text area for Book Title --- chrome/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 index e322be874..897cf09b1 100644 --- 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; }