Browse Source

Avoid use of ==

Nicolas Petton 12 years ago
parent
commit
49bdc8f3ff
1 changed files with 1 additions and 1 deletions
  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() {},