Skip to content

Commit

Permalink
Return ALL the nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleeckx committed Feb 13, 2017
1 parent 97f7f0b commit e819ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebComponents/App/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ namespace Vidyano.WebComponents {
return;

const doc = <HTMLDocument>await this.importHref(configs);
Enumerable.from(doc.body.children).forEach(c => Polymer.dom(this).appendChild(c));
Enumerable.from(doc.body.childNodes).forEach(c => Polymer.dom(this).appendChild(c));
}

private async _updateInitialize(...promises: Promise<any>[]) {
Expand Down

0 comments on commit e819ed7

Please sign in to comment.