Bug 102153. Javascript strict warnings in pref-contentpacks.xul. Patch by Stephen Walker <walk84@yahoo.com> r=stephend/sr=alecf

This commit is contained in:
stephend%netscape.com 2002-01-09 10:14:33 +00:00
parent 0bd485ceda
commit 131f1bfab3

View File

@ -64,10 +64,10 @@
if (tree) {
var selectedItem = tree.selectedItems.length ? tree.selectedItems[0] : null;
if (selectedItem) {
var newContentPack = selectedItem.firstChild.firstChild.getAttribute("value");
newContentPack = selectedItem.firstChild.firstChild.getAttribute("value");
}
} else {
var newContentPack = parent.hPrefWindow.wsm.dataManager.getItemData( "chrome://communicator/content/pref/pref-content.xul", "contentPackTree" ).prefvalue;
newContentPack = parent.hPrefWindow.wsm.dataManager.getItemData( "chrome://communicator/content/pref/pref-content.xul", "contentPackTree" ).prefvalue;
}
}
catch (e) {}