ie compatibility: can't treat childNodes as a normal collection with slice.

This commit is contained in:
Danny Yoo 2011-09-10 13:33:10 -04:00
parent 37272e135b
commit 7a2ee5ad18

View File

@ -44,7 +44,12 @@
var domOpenF =
// To go down, just take the children.
function(n) {
return [].slice.call(n.childNodes, 0);
var i;
var result = [];
for (i = 0; i < n.childNodes.length; i++) {
result.push(n.childNodes[i]);
}
return result;
};
var domCloseF =
// To go back up, take the node, do a shallow cloning, and replace the children.