-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Description
Hello,your code use innerHTML to wrap children,so events been removed,
this.pageContainer.innerHTML = container.cloneNode(true).innerHTML;
container.innerHTML = "";
container.appendChild( this.pageContainer );;
I think use this:
var children = container.children;
for(var i = 0,len = children.length; i < len ;i++) {
this.pageContainer.appendChild(children[i]);
}
container.appendChild(this.pageContainer);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels