]> git.parisson.com Git - pdf.js.git/commitdiff
Lint - fixing double quotes
authorArtur Adib <arturadib@gmail.com>
Mon, 3 Oct 2011 19:57:04 +0000 (15:57 -0400)
committerArtur Adib <arturadib@gmail.com>
Mon, 3 Oct 2011 19:59:14 +0000 (15:59 -0400)
pdf.js

diff --git a/pdf.js b/pdf.js
index 2eba4e652a324c722f84ee8d4c2c275cd1306e10..8d877cf8434d62ac32d5b6d4b6c1ccab79944558 100644 (file)
--- a/pdf.js
+++ b/pdf.js
@@ -4888,8 +4888,8 @@ var CanvasExtraState = (function canvasExtraState() {
     this.fillColorObj = null;
     this.strokeColorObj = null;
     // Default fore and background colors
-    this.fillColor = "#000000";
-    this.strokeColor = "#000000";
+    this.fillColor = '#000000';
+    this.strokeColor = '#000000';
 
     this.old = old;
   }