Added some missing semicolons.

This commit is contained in:
Hasse Feldthaus 2015-07-29 18:19:45 +02:00
parent 565e7cd097
commit 29d5401eed

View File

@ -2056,7 +2056,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
statusText: 'OK' statusText: 'OK'
}); });
} }
} };
xdr.onerror = function (e) { xdr.onerror = function (e) {
if ( $.isFunction ( onError ) ) { if ( $.isFunction ( onError ) ) {
onError({ // Faking an xhr object onError({ // Faking an xhr object
@ -2065,7 +2065,7 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
statusText: 'An error happened. Due to an XDomainRequest deficiency we can not extract any information about this error. Upgrade your browser.' statusText: 'An error happened. Due to an XDomainRequest deficiency we can not extract any information about this error. Upgrade your browser.'
}); });
} }
} };
try { try {
xdr.open('GET', url); xdr.open('GET', url);
xdr.send(); xdr.send();