Browse Source

Firefox: fix tab closing issue (pop-up blocking)

pull/2/head
Deathamns 10 years ago
committed by gorhill
parent
commit
859482fff2
  1. 11
      platform/firefox/vapi-background.js

11
platform/firefox/vapi-background.js

@ -980,10 +980,17 @@ var httpObserver = {
var tabURI = tab.linkedBrowser.currentURI;
// Probably isn't the best method to identify the source tab
if ( tabURI.spec === this.lastRequest.openerURL ) {
sourceTabId = vAPI.tabs.getTabId(tab);
if ( tabURI.spec !== lastRequest.openerURL ) {
continue
}
sourceTabId = vAPI.tabs.getTabId(tab);
if ( sourceTabId !== lastRequest.tabId ) {
break;
}
sourceTabId = null;
}
if ( this.handlePopup(channel.URI, lastRequest.tabId, sourceTabId) ) {

Loading…
Cancel
Save