www

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

commit 5c5b9af1d75cef6ac36f50ea0bbc2cc4963469f9
parent 41c9a4a433b84cf68669de88d4df7effb2d7a5b7
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 19 Apr 2013 01:40:25 -0400

Increase max note title length to 120

https://forums.zotero.org/discussion/28945

Diffstat:
Mchrome/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 @@ -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 () '<div class="zotero-note znv1"></div>'); this.__defineGetter__("notePrefix", function () '<div class="zotero-note znv1">'); this.__defineGetter__("noteSuffix", function () '</div>');