From 25448945a4827f1e4efc2167c2cf01e0520dee9d Mon Sep 17 00:00:00 2001 From: Artur Adib Date: Mon, 3 Oct 2011 15:57:04 -0400 Subject: [PATCH] Lint - fixing double quotes --- pdf.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdf.js b/pdf.js index 2eba4e652..8d877cf84 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; }