Bug 342988 - Allow plugins to rebuild menu(s), but not before CZ has initialized.

r=silver@warwickcompsoc.co.uk (James Ross)
ChatZilla Only.
This commit is contained in:
gijskruitbosch%gmail.com 2006-12-07 12:21:11 +00:00
Родитель e54b6ef373
Коммит c730a7efe7
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -3494,6 +3494,10 @@ function updateTimestampFor(view, displayRow)
client.updateMenus =
function c_updatemenus(menus)
{
// Don't bother if the menus aren't even created yet.
if (!client.initialized)
return null;
return this.menuManager.updateMenus(document, menus);
}