Displaying 1 result from an estimated 1 matches for "nodetmp".
Did you mean:
node_tmp
2006 Mar 23
4
XML parser fixed
...localHash[pair[0]] = pair[1][0];
}
});
return localHash;
} else {
return this._nodeAsText(node);
}
},
_removeComments: function(node)
{
for(var i=0; i < node.childNodes.length; i++) {
var nodeTmp = node.childNodes[i];
if(nodeTmp.nodeType == 8) {
Element.remove(nodeTmp);
}
}
return node;
},
_subNodeToHash: function (hash, node)
{
var key = node.tagName;
if (hash[key]) {
hash[key].push(this._node...