URL handling changes

pull/2/head
Deathamns 10 years ago committed by gorhill
parent a6acb50892
commit a7f15f0b71

@ -174,6 +174,19 @@ vAPI.canExecuteContentScript = function() {
/******************************************************************************/
vAPI.getUrlNormalizer = function() {
return {
get href() {
return this._url || '';
},
set href(url) {
this._url = _urlNormalizer_(url, document.baseURI);
}
};
};
/******************************************************************************/
})(this);
/******************************************************************************/

Loading…
Cancel
Save