From 5c5b9af1d75cef6ac36f50ea0bbc2cc4963469f9 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 19 Apr 2013 01:40:25 -0400 Subject: [PATCH] Increase max note title length to 120 https://forums.zotero.org/discussion/28945 --- chrome/content/zotero/xpcom/data/notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/notes.js b/chrome/content/zotero/xpcom/data/notes.js index 74c18983c..bc48ec619 100644 --- a/chrome/content/zotero/xpcom/data/notes.js +++ b/chrome/content/zotero/xpcom/data/notes.js @@ -27,7 +27,7 @@ Zotero.Notes = new function() { this.noteToTitle = noteToTitle; - this.__defineGetter__("MAX_TITLE_LENGTH", function() { return 80; }); + this.__defineGetter__("MAX_TITLE_LENGTH", function() { return 120; }); this.__defineGetter__("defaultNote", function () '
'); this.__defineGetter__("notePrefix", function () '
'); this.__defineGetter__("noteSuffix", function () '
');