14c7e9d1 by Michael Richards

Loop over a frozen array of childNodes (we may mutate node.childNodes in the nex…

…t loop which would cause issues).
1 parent bd766b4f
......@@ -87,7 +87,7 @@ class Rivets.View
type = attribute.name.replace bindingRegExp, ''
buildBinding 'Binding', node, type, attribute.value
parse childNode for childNode in node.childNodes
parse childNode for childNode in (n for n in node.childNodes)
parse el for el in @els
......