Created
March 23, 2017 19:05
-
-
Save miohtama/27ba0d9fa5c06a1e44206db5224d9ecc to your computer and use it in GitHub Desktop.
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
try { | |
$(document).ready(function() { | |
// ... | |
}); | |
window.javascriptReady = true; | |
} catch(e) { | |
if (window.Raven) { | |
Raven.captureException(e); | |
} else { | |
throw e; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment