This commit is contained in:
Barney Carroll 2016-11-24 12:29:45 +00:00
parent edf3c5eaf7
commit e8669ad5c8

View file

@ -347,7 +347,7 @@ module.exports = function($window) {
var content = children[0].children var content = children[0].children
if (vnode.dom.innerHTML !== content) vnode.dom.innerHTML = content if (vnode.dom.innerHTML !== content) vnode.dom.innerHTML = content
} }
else if (children != null || vnode.text != null) throw new Error("Child node of a contenteditable must be trusted") else if (vnode.text != null || children != null && children.length !== 0) throw new Error("Child node of a contenteditable must be trusted")
} }
//remove //remove