Parcourir la source

Avoid use of ==

Nicolas Petton il y a 12 ans
Parent
commit
49bdc8f3ff
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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() {},