ソースを参照

Avoid use of ==

Nicolas Petton 12 年 前
コミット
49bdc8f3ff
1 ファイル変更1 行追加1 行削除
  1. 1 1
      js/boot.js

+ 1 - 1
js/boot.js

@@ -35,7 +35,7 @@
 
 /* Make that console is defined */
 
-if (typeof console == "undefined") {
+if (typeof console === "undefined") {
     this.console = {
 	log: function() {},
 	warn: function() {},