Bug 221995 Followup fix for bug revealed by fixing jsObject.js r=timeless

This commit is contained in:
neil%parkwaycc.co.uk 2006-06-23 12:31:52 +00:00
Родитель db7888b79e
Коммит 7b82d37307
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -256,10 +256,9 @@ JSObjectViewer.prototype =
var treechildren = aItem.getElementsByTagName("treechildren").item(0);
if (!treechildren) {
treechildren = document.createElement("treechildren");
this.buildPropertyTree(treechildren, aItem.__JSValue__);
aItem.appendChild(treechildren);
}
this.buildPropertyTree(treechildren, aItem.__JSValue__);
},
onCreateContext: function(aPopup)