From: Artur Adib Date: Mon, 3 Oct 2011 19:57:04 +0000 (-0400) Subject: Lint - fixing double quotes X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=25448945a4827f1e4efc2167c2cf01e0520dee9d;p=pdf.js.git Lint - fixing double quotes --- diff --git a/pdf.js b/pdf.js index 2eba4e6..8d877cf 100644 --- 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; }