diff --git a/src/js/assets.js b/src/js/assets.js index 8f75a3b..0c319c7 100644 --- a/src/js/assets.js +++ b/src/js/assets.js @@ -212,6 +212,7 @@ var cachedAssetsManager = (function() { /******************************************************************************/ var getTextFileFromURL = function(url, onLoad, onError) { + // https://github.com/gorhill/uMatrix/issues/15 var onResponseReceived = function() { if ( typeof this.status === 'number' && this.status >= 200 && this.status < 300 ) { return onLoad.call(this);