From c438a8748a9ac46155d9844ea7ba19a70c4df231 Mon Sep 17 00:00:00 2001 From: sbarman Date: Fri, 15 Jul 2011 11:41:39 -0700 Subject: [PATCH] fix type --- pdf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf.js b/pdf.js index d371330ac..fe2d38ac6 100644 --- a/pdf.js +++ b/pdf.js @@ -4055,7 +4055,7 @@ var CanvasGraphics = (function() { } var strokeColor = this.current.strokeColor; - if (stokeColor && strokeColor.type === "Pattern") { + if (strokeColor && strokeColor.type === "Pattern") { ctx.save(); ctx.strokeStyle = strokeColor.getPattern(ctx); ctx.stroke();