Browse Source

define console for IE9; updated to fix lint errors and comment

Jeff Wagner 13 years ago
parent
commit
08f8aed521
  1. 4
      web/compatibility.js

4
web/compatibility.js

@ -225,9 +225,9 @@ @@ -225,9 +225,9 @@
});
})();
//IE9 console
// Check console compatability
(function checkConsoleCompatibility() {
if (typeof console == "undefined") {
if (typeof console == 'undefined') {
console = {log: function() {}};
}
})();

Loading…
Cancel
Save