mirror of https://github.com/Sonarr/Sonarr
11 lines
353 B
JavaScript
11 lines
353 B
JavaScript
/// <reference path="JsLibraries/jquery.js" />
|
|
|
|
window.onerror = function (msg, url, line) {
|
|
alert("Error: " + msg + "\nurl: " + url + "\nline #: " + line);
|
|
|
|
|
|
var suppressErrorAlert = true;
|
|
// If you return true, then error alerts (like in older versions of
|
|
// Internet Explorer) will be suppressed.
|
|
return suppressErrorAlert;
|
|
}; |