www

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

commit f339e088945c8ef4a3a2b5a5af003de279ac5fd4
parent 4535bb5315238ae8f8f74360e3cb8dbf15fd989e
Author: Simon Kornblith <simon@simonster.com>
Date:   Wed, 10 Oct 2012 15:31:48 -0400

Fix typo

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 @@ -562,7 +562,7 @@ Zotero_RecognizePDF.Recognizer.prototype._selectItems = function(/**Zotero.Trans /**Object*/ items, /**Function**/ callback) { for(var i in items) { var obj = {}; - obj[i] = items; + obj[i] = items[i]; callback(obj); return; }