Merge pull request #1175 from gaspoute/pass-namespace-to-children

Pass namespace to new children when updating their parent
This commit is contained in:
Leo Horie 2016-07-26 10:30:45 -04:00 committed by GitHub
commit d1216f3e06

View file

@ -176,7 +176,7 @@ module.exports = function($window) {
}
if (end < start) break
}
createNodes(parent, vnodes, start, end + 1, hooks, nextSibling, undefined)
createNodes(parent, vnodes, start, end + 1, hooks, nextSibling, ns)
removeNodes(parent, old, oldStart, oldEnd + 1, vnodes)
}
}