Skip to content

Commit

Permalink
Fix for uBlock-LLC#1176
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVallat committed Apr 4, 2015
1 parent 0083784 commit a694d1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion platform/firefox/vapi-background.js
Original file line number Diff line number Diff line change
Expand Up @@ -1326,7 +1326,9 @@ vAPI.net.registerListeners = function() {
var details = e.data;
var browser = e.target;
var tabId = vAPI.tabs.getTabId(browser);

if (tabId === vAPI.noTabId) {
return; // Do not navigate for behind the scenes
}
//console.debug("nsIWebProgressListener: onLocationChange: " + details.url + " (" + details.flags + ")");

// LOCATION_CHANGE_SAME_DOCUMENT = "did not load a new document"
Expand Down
2 changes: 1 addition & 1 deletion src/js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ uDom.onLoad(function () {
var tabId = null; //If there's no tab ID specified in the query string, it will default to current tab.

// Extract the tab id of the page this popup is for
var matches = window.location.search.match(/[\?&]tabId=([^&]+)/);
var matches = window.location && window.location.search.match(/[\?&]tabId=([^&]+)/);
if (matches && matches.length === 2) {
tabId = matches[1];
}
Expand Down

0 comments on commit a694d1e

Please sign in to comment.