Created
August 26, 2008 01:42
-
-
Save snaka/7192 to your computer and use it in GitHub Desktop.
Create dummy object unless unsafeWindow is exists.
This file contains 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
// Create dummy object unless unsafeWindow is exists. | |
if (!unsafeWindow.console) { | |
unsafeWindow.console = { | |
log: function() {} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment