Skip to content

Commit

Permalink
thou shalt use use Polymer.dom for all DOM manipulations
Browse files Browse the repository at this point in the history
  • Loading branch information
ek committed Jun 21, 2016
1 parent eeb04be commit fa15aec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
{
"name": "px-view",
"version": "0.3.3",
"version": "0.3.4",
"main": [
"px-view.html"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 2,7 @@
"name": "px-view",
"author": "General Electric",
"description": "Px View",
"version": "0.3.3",
"version": "0.3.4",
"private": true,
"extName": null,
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion px-view.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 176,7 @@
// confirm element tag name matches loaded element
this._viewElement = document.createElement(this._elementTagName);
this._viewElement.id = this._elementTagName '-' new Date().getTime();
this.appendChild(this._viewElement);
Polymer.dom(this.root).appendChild(this._viewElement);
this.set('status', 'attached');
},

Expand Down

0 comments on commit fa15aec

Please sign in to comment.