mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Doh
This commit is contained in:
parent
03668551c2
commit
4901b11fae
1 changed files with 11 additions and 14 deletions
|
@ -189,11 +189,10 @@ vAPI.tabs = {
|
|||
|
||||
vAPI.tabs.registerListeners = function() {
|
||||
safari.application.addEventListener('beforeNavigate', function(e) {
|
||||
if ( !e.target || e.url === 'about:blank' ) {
|
||||
if ( !vAPI.tabs.popupCandidate || !e.target || e.url === 'about:blank' ) {
|
||||
return;
|
||||
}
|
||||
var url = e.url, tabId = vAPI.tabs.getTabId(e.target);
|
||||
if ( vAPI.tabs.popupCandidate ) {
|
||||
var details = {
|
||||
url: url,
|
||||
tabId: tabId,
|
||||
|
@ -205,8 +204,6 @@ vAPI.tabs.registerListeners = function() {
|
|||
if ( vAPI.tabs.stack[details.sourceTabId] ) {
|
||||
vAPI.tabs.stack[details.sourceTabId].activate();
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
}, true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue