Created
December 19, 2012 07:51
-
-
Save benshimmin/4335123 to your computer and use it in GitHub Desktop.
How to deal with debugging in-browser JavaScript if a third-party has over-written window.onerror to fail silently
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
// In your browser's developer console, put this: | |
window.onerror = function(error) { return false; }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment