From bd411290dd99e4a848dfea446c921e373c38afec Mon Sep 17 00:00:00 2001 From: gorhill Date: Sun, 26 Oct 2014 10:18:18 -0400 Subject: [PATCH] forgot to tag source code with github issue --- src/js/assets.js | 1 + 1 file changed, 1 insertion(+) 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);