Pass namespace when creating new elements while updating a keyed list, fix #1820

This commit is contained in:
Pierre-Yves Gerardy 2017-05-30 14:17:46 +02:00
parent 29bc42b574
commit 40429c8377
2 changed files with 23 additions and 1 deletions

View file

@ -224,7 +224,7 @@ module.exports = function($window) {
if (movable.dom != null) nextSibling = movable.dom
}
else {
var dom = createNode(parent, v, hooks, undefined, nextSibling)
var dom = createNode(parent, v, hooks, ns, nextSibling)
nextSibling = dom
}
}