mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
more sensible var naming
This commit is contained in:
parent
a830fad589
commit
e7daeb3edc
1 changed files with 5 additions and 5 deletions
|
@ -576,7 +576,7 @@ vAPI.tabs = {};
|
|||
|
||||
/******************************************************************************/
|
||||
|
||||
vAPI.tabs.mostRecentWindowId = (function() {
|
||||
vAPI.tabs.chromeWindowType = (function() {
|
||||
if ( vAPI.thunderbird ) {
|
||||
return 'mail:3pane';
|
||||
}
|
||||
|
@ -682,7 +682,7 @@ vAPI.tabs.getAll = function(window) {
|
|||
/******************************************************************************/
|
||||
|
||||
vAPI.tabs.getWindows = function() {
|
||||
var winumerator = Services.wm.getEnumerator(this.mostRecentWindowId);
|
||||
var winumerator = Services.wm.getEnumerator(this.chromeWindowType);
|
||||
var windows = [];
|
||||
|
||||
while ( winumerator.hasMoreElements() ) {
|
||||
|
@ -754,7 +754,7 @@ vAPI.tabs.open = function(details) {
|
|||
}
|
||||
}
|
||||
|
||||
var win = Services.wm.getMostRecentWindow(this.mostRecentWindowId);
|
||||
var win = Services.wm.getMostRecentWindow(this.chromeWindowType);
|
||||
var tabBrowser = getTabBrowser(win);
|
||||
|
||||
if ( vAPI.fennec ) {
|
||||
|
@ -1023,7 +1023,7 @@ var tabWatcher = (function() {
|
|||
};
|
||||
|
||||
var currentBrowser = function() {
|
||||
var win = Services.wm.getMostRecentWindow(vAPI.tabs.mostRecentWindowId);
|
||||
var win = Services.wm.getMostRecentWindow(vAPI.tabs.chromeWindowType);
|
||||
// https://github.com/gorhill/uBlock/issues/399
|
||||
// getTabBrowser() can return null at browser launch time.
|
||||
var tabBrowser = getTabBrowser(win);
|
||||
|
@ -1291,7 +1291,7 @@ vAPI.setIcon = function(tabId, iconStatus, badge) {
|
|||
// If badge is undefined, then setIcon was called from the TabSelect event
|
||||
var win = badge === undefined
|
||||
? iconStatus
|
||||
: Services.wm.getMostRecentWindow(vAPI.tabs.mostRecentWindowId);
|
||||
: Services.wm.getMostRecentWindow(vAPI.tabs.chromeWindowType);
|
||||
var curTabId = tabWatcher.tabIdFromTarget(getTabBrowser(win).selectedTab);
|
||||
var tb = vAPI.toolbarButton;
|
||||
|
||||
|
|
Loading…
Reference in a new issue