Skip to content

Commit

Permalink
Fixes more Polymer#1241
Browse files Browse the repository at this point in the history
  • Loading branch information
pofigizm committed Mar 5, 2015
1 parent c6ceda0 commit 2ebda2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PRIMER.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ Polymer({
}
},

ready: function() {
this.innerHTML = 'Hello World, I am a <b>Custom Element!</b>';
attached: function() {
this.innerHTML = 'Hello World, I am a ' + (this.user || 'nobody') + '.';
}

});
Expand Down
2 changes: 1 addition & 1 deletion explainer/samples.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
user: String
},

ready: function() {
attached: function() {
this.innerHTML = 'Hello World, my user is ' + (this.user || 'nobody') + '.';
}

Expand Down

0 comments on commit 2ebda2a

Please sign in to comment.