Add strict equalities in src/display/canvas.js

This commit is contained in:
Jonas Jenwald 2014-08-01 12:39:56 +02:00
parent a4b06d7a02
commit c1f1f2f0e1

View File

@ -1227,7 +1227,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
// the current transformation matrix before the fillText/strokeText.
// See https://bugzilla.mozilla.org/show_bug.cgi?id=726227
var browserFontSize = size >= MIN_FONT_SIZE ? size : MIN_FONT_SIZE;
this.current.fontSizeScale = browserFontSize != MIN_FONT_SIZE ? 1.0 :
this.current.fontSizeScale = browserFontSize !== MIN_FONT_SIZE ? 1.0 :
size / MIN_FONT_SIZE;
var rule = italic + ' ' + bold + ' ' + browserFontSize + 'px ' + typeface;
@ -1373,7 +1373,7 @@ var CanvasGraphics = (function CanvasGraphicsClosure() {
lineWidth /= scale;
}
if (fontSizeScale != 1.0) {
if (fontSizeScale !== 1.0) {
ctx.scale(fontSizeScale, fontSizeScale);
lineWidth /= fontSizeScale;
}