]> git.parisson.com Git - pdf.js.git/commitdiff
fixed lint errors
authorSteffen Märcker <merkste@web.de>
Wed, 28 Dec 2011 16:32:54 +0000 (17:32 +0100)
committerSteffen Märcker <merkste@web.de>
Wed, 28 Dec 2011 16:32:54 +0000 (17:32 +0100)
src/core.js

index 3532c0937f60c3c5e9303483a0b0375f6685eeed..8c55d4d062cbd00110fb9dc0a82595151367e784 100644 (file)
@@ -583,7 +583,7 @@ var PDFDoc = (function PDFDocClosure() {
         // Some versions of FF can't create a worker on localhost, see:
         // https://bugzilla.mozilla.org/show_bug.cgi?id=683280
         var worker = new Worker(workerSrc);
-        
+
         var messageHandler = new MessageHandler('main', worker);
         // Tell the worker the file it was created from.
         messageHandler.send('workerSrc', workerSrc);
@@ -598,7 +598,8 @@ var PDFDoc = (function PDFDocClosure() {
         }.bind(this));
 
         var testObj = new Uint8Array(1);
-        // Some versions of Opera throw a DATA_CLONE_ERR on serializing the typed array.
+        // Some versions of Opera throw a DATA_CLONE_ERR on 
+        // serializing the typed array.
         messageHandler.send('test', testObj);
         return;
       } catch (e) {}