www

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

commit 28d83faa6477569f6b60dc163f60de5cf13477df
parent 9c80e9ab937d4c0e957794abfed30d249a32d2b7
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 21 Jan 2013 01:05:43 -0500

Use 100 lines

Diffstat:
Mchrome/content/zotero/recognizePDF.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/recognizePDF.js b/chrome/content/zotero/recognizePDF.js @@ -352,7 +352,7 @@ Zotero_RecognizePDF.Recognizer.prototype._cleanLines = function(lines, callback) // Use only first column from multi-column lines const lineRe = /^\s*([^\s]+(?: [^\s]+)+)/; var cleanedLines = [], cleanedLineLengths = []; - for(var i=0; i<lines.length && cleanedLines.length<30; i++) { + for(var i=0; i<lines.length && cleanedLines.length<100; i++) { var m = lineRe.exec(lines[i]); if(m && m[1].split(' ').length > 3) { cleanedLines.push(m[1]);