1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-13 15:54:54 +12:00

this fixes one part of #498

This commit is contained in:
gorhill 2015-01-14 17:45:55 -05:00
parent 14950c0c5f
commit f4a853c611

View file

@ -31,9 +31,8 @@
/******************************************************************************/
self.vAPI = self.vAPI || {};
var vAPI = self.vAPI = self.vAPI || {};
var vAPI = self.vAPI;
var chrome = self.chrome;
var manifest = chrome.runtime.getManifest();
@ -470,6 +469,16 @@ vAPI.onLoadAllCompleted = function() {
/******************************************************************************/
vAPI.punycodeHostname = function(hostname) {
return hostname;
};
vAPI.punycodeURL = function(url) {
return url;
};
/******************************************************************************/
})();
/******************************************************************************/