Skip to content

Commit

Permalink
Replace == by ===
Browse files Browse the repository at this point in the history
  • Loading branch information
epost committed Apr 28, 2015
1 parent 20a1140 commit 786674f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/canvas.js
Expand Up @@ -9,7 +9,7 @@ var CanvasRenderer = function(el, options) {

el.appendChild(canvas);

if (typeof(G_vmlCanvasManager) == 'object') {
if (typeof(G_vmlCanvasManager) === 'object') {
G_vmlCanvasManager.initElement(canvas);
}

Expand Down

0 comments on commit 786674f

Please sign in to comment.