1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Firefox: prevent currently selected tab from being reset in selector

This commit is contained in:
gorhill 2015-07-01 19:50:43 -04:00
parent f881697251
commit 5775fe32b8

View File

@ -621,7 +621,6 @@ var synchronizeTabIds = function(newTabIds) {
continue;
}
option = select.options[j];
j += 1;
if ( !option ) {
option = document.createElement('option');
select.appendChild(option);
@ -629,10 +628,12 @@ var synchronizeTabIds = function(newTabIds) {
option.textContent = newTabIds[tabId];
option.value = classNameFromTabId(tabId);
if ( option.value === selectValue ) {
select.selectedIndex = j;
option.setAttribute('selected', '');
} else {
option.removeAttribute('selected');
}
j += 1;
}
while ( j < select.options.length ) {
select.removeChild(select.options[j]);