Fix typo in deepdive function from r1380

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1388 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2010-02-14 06:06:19 +00:00
parent 10fee21e86
commit c32284cfcb

View File

@@ -5569,7 +5569,7 @@ function BatchCommand(text) {
// are removed
var deepdive = function(node) {
if (node.nodeType == 1) {
var children = node.children;
var children = node.childNodes;
var i = children.length;
while (i--) { deepdive(children.item(i)); }
try {