Skip to content

Instantly share code, notes, and snippets.

@slav123
Created January 14, 2013 06:27
Show Gist options
  • Save slav123/4528131 to your computer and use it in GitHub Desktop.
Save slav123/4528131 to your computer and use it in GitHub Desktop.
console.log fallback
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