Display only the text before @ in the title of the tab. The full text is in the tooltipText.
This commit is contained in:
Родитель
2048b5c5ec
Коммит
fd5fa7bc43
|
@ -105,7 +105,8 @@ var msgObserver = {
|
|||
|
||||
var tabs = document.getElementById("tabs");
|
||||
var tab = document.createElement("convtab");
|
||||
tab.setAttribute("label", aTitle);
|
||||
tab.tooltipText = aTitle;
|
||||
tab.setAttribute("label", aTitle.replace(/@.*/, ""));
|
||||
tabs.appendChild(tab);
|
||||
if (!tabs.selectedItem)
|
||||
tabs.selectedItem = tab;
|
||||
|
|
Загрузка…
Ссылка в новой задаче