Lint - fixing double quotes

This commit is contained in:
Artur Adib 2011-10-03 15:57:04 -04:00
parent 07b52bf1c6
commit 25448945a4

4
pdf.js
View File

@ -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;
}