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

truncate pointlessly too long labels in selector

This commit is contained in:
gorhill 2015-10-24 09:24:27 -04:00
parent 26b70a1e64
commit 6c46a89142

View File

@ -628,7 +628,8 @@ var synchronizeTabIds = function(newTabIds) {
option = document.createElement('option');
select.appendChild(option);
}
option.textContent = newTabIds[tabId];
// Truncate too long labels.
option.textContent = newTabIds[tabId].slice(0, 80);
option.value = classNameFromTabId(tabId);
if ( option.value === selectValue ) {
select.selectedIndex = j;