Bug 119764. JS strict warnings in pref-themes.js. Patch by Stephen Walker <walk84@yahoo.com> r=morten@nilsen.com/sr=hewitt@netscape.com

This commit is contained in:
stephend%netscape.com 2002-05-26 06:09:26 +00:00
Родитель 522505a8ab
Коммит 948527057f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -51,7 +51,7 @@ function Startup()
{
gData = parent.hPrefWindow.wsm.dataManager.pageData["chrome://communicator/content/pref/pref-themes.xul"];
var list = document.getElementById( "skinsList" );
if (gData.loaded) {
if ("loaded" in gData && "themeIndex" in gData) {
list.selectedIndex = gData.themeIndex;
return;
}