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

This commit is contained in:
Jeff Wagner 2012-01-24 14:19:41 -08:00
parent 19622406da
commit 08f8aed521

View File

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