You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
'use strict' ;
( function ( ) {
if ( ! window . console ) {
window . console = { } ;
}
if ( ! window . console . debug ) {
window . console . debug = function ( ) {
} ;
}
window . alert = function ( message ) {
window . Messenger ( ) . post ( message ) ;
} ;
window . onerror = function ( msg , url , line ) {
try {
var a = document . createElement ( 'a' ) ;
a . href = url ;
var messageText = a . pathname . split ( '/' ) . pop ( ) + ' : ' + line + '</br>' + msg ;
var message = {
message : messageText ,
type : 'error' ,
hideAfter : 1000 ,
showCloseButton : true
} ;
window . Messenger ( ) . post ( message ) ;
} catch ( error ) {
console . log ( 'An error occurred while reporting error. ' + error ) ;
console . log ( msg ) ;
window . alert ( 'Couldn\'t report JS error. ' + msg ) ;
}
return false ; //don't suppress default alerts and logs.
} ;
$ ( document ) . ajaxError ( function ( event , xmlHttpRequest , ajaxOptions ) {
//don't report 200 error codes
if ( xmlHttpRequest . status >= 200 && xmlHttpRequest . status <= 300 ) {
return undefined ;
}
//don't report aborted requests
if ( xmlHttpRequest . statusText === 'abort' ) {
return undefined ;
}
var message = {
type : 'error' ,
hideAfter : 1000 ,
showCloseButton : true
} ;
if ( xmlHttpRequest . status === 0 && xmlHttpRequest . readyState === 0 ) {
return false ;
//message.message = 'NzbDrone Server Not Reachable. make sure NzbDrone is running.';
} else {
message . message = '[{0}] {1} : {2}' . format ( ajaxOptions . type , xmlHttpRequest . statusText , ajaxOptions . url ) ;
}
window . Messenger ( ) . post ( message ) ;
return false ;
} ) ;
} ) ( ) ;