mirror of https://github.com/gorhill/uBlock.git
Fixing #1017, only apply switch to about:blank or about:newtab if not loading
This commit is contained in:
parent
05540108b7
commit
50804eb1bb
|
@ -308,7 +308,8 @@ var tabWatcher = {
|
|||
|
||||
onTabSelect: function({target}) {
|
||||
// target is tab in Firefox, browser in Fennec
|
||||
var URI = (target.linkedBrowser || target).currentURI;
|
||||
var browser = (target.linkedBrowser || target);
|
||||
var URI = browser.currentURI;
|
||||
var aboutPath = URI.schemeIs('about') && URI.path;
|
||||
var tabId = vAPI.tabs.getTabId(target);
|
||||
|
||||
|
@ -317,11 +318,13 @@ var tabWatcher = {
|
|||
return;
|
||||
}
|
||||
|
||||
if ( browser.webNavigation.busyFlags === 0 /*BUSY_FLAGS_NONE*/ ) {
|
||||
vAPI.tabs.onNavigation({
|
||||
frameId: 0,
|
||||
tabId: tabId,
|
||||
url: URI.asciiSpec
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
onLocationChange: function(browser, webProgress, request, location, flags) {
|
||||
|
|
Loading…
Reference in New Issue