()
| 398 | |
| 399 | // Check if the crash happened, and log it on datadog. Note that the application should be initialized before this. |
| 400 | var checkAndLogBrowserCrash = function () { |
| 401 | if (window.sessionStorage != null ? window.sessionStorage.getItem('oz_crashed') : undefined) { |
| 402 | log('Browser crashed', {}, 'error') |
| 403 | return (window.sessionStorage != null ? window.sessionStorage.removeItem('oz_crashed') : undefined) |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | window.onbeforeunload = function (e) { |
| 408 | if (utils.isOzaria) { |