Fixes #890, Use text area for Book Title

This commit is contained in:
Dan Stillman 2016-01-08 04:29:23 -05:00
parent 08562e50cd
commit 9fb42b6788

View File

@ -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;
}