Bug 255774 - number of available software updates not displayed when mail button not on toolbar. patch by steffen.wilberg@web.de, r=bryner.

This commit is contained in:
bryner%brianryner.com 2004-09-03 00:43:26 +00:00
Родитель d123857940
Коммит 18987b51c5
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -560,7 +560,9 @@ function delayedStartup()
} }
} else { } else {
// We couldn't get the shell service; go hide the mail toolbar button. // We couldn't get the shell service; go hide the mail toolbar button.
document.getElementById("mail-button").hidden = true; var mailbutton = document.getElementById("mail-button");
if (mailbutton)
mailbutton.hidden = true;
} }
#endif #endif