Created
January 14, 2013 06:27
-
-
Save slav123/4528131 to your computer and use it in GitHub Desktop.
console.log fallback
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var alertFallback = true; | |
if (typeof console === "undefined" || typeof console.log === "undefined") { | |
console = {}; | |
if (alertFallback) { | |
console.log = function (msg) { | |
alert(msg); | |
}; | |
} else { | |
console.log = function () { | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment