Raymond Hill 6 years ago
parent 0f7c82a2d9
commit 9a6b1c2c9c

@ -556,7 +556,7 @@ var pageSelectorChanged = function() {
);
}
document.getElementById('reloadTab').classList.toggle('disabled', tabId <= 0);
document.getElementById('popupPanelButton').classList.toggle('disabled', tabId === 0);
document.getElementById('popupPanelButton').classList.toggle('disabled', tabId <= 0);
popupPanel.update();
};
@ -672,7 +672,7 @@ var popupPanel = (function() {
let start = function() {
let newTabId = tabIdFromPageSelector();
if ( newTabId === 0 ) {
if ( newTabId <= 0 ) {
return stop();
}
if ( newTabId === tabId ) { return; }

@ -369,12 +369,7 @@ var matrixSnapshotFromTabId = function(details, callback) {
callback('ENOTFOUND');
return;
}
// Allow examination of behind-the-scene requests
var tabId = tab.url.lastIndexOf(vAPI.getURL('dashboard.html'), 0) !== 0 ?
tab.id :
vAPI.noTabId;
matrixSnapshotIf(tabId, details);
matrixSnapshotIf(tab.id, details);
};
vAPI.tabs.get(null, onTabReady);

@ -208,6 +208,8 @@ PageStore.prototype = {
},
recordRequest: function(type, url, block) {
if ( this.tabId <= 0 ) { return; }
if ( block ) {
this.perLoadBlockedRequestCount++;
} else {

Loading…
Cancel
Save