Display only the text before @ in the title of the tab. The full text is in the tooltipText.

This commit is contained in:
Florian Quèze 2007-10-06 23:38:02 +02:00
Родитель 2048b5c5ec
Коммит fd5fa7bc43
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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;