1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Merge branch 'master' of github.com:gorhill/uBlock

This commit is contained in:
gorhill 2015-03-04 10:18:54 -05:00
commit 6f3646a43d
2 changed files with 4 additions and 8 deletions

View File

@ -768,12 +768,7 @@ vAPI.tabs.reload = function(tabId) {
return;
}
if ( vAPI.fennec ) {
tab.browser.reload();
return;
}
getOwnerWindow(tab).gBrowser.reloadTab(tab);
getBrowserForTab(tab).webNavigation.reload(0);
};
/******************************************************************************/

View File

@ -156,11 +156,12 @@ var hideElements = function(selectors) {
}
};
var url = window.location.href;
localMessager.send(
{
what: 'retrieveDomainCosmeticSelectors',
pageURL: window.location.href,
locationURL: window.location.href
pageURL: url,
locationURL: url
},
filteringHandler
);