Skip to content

Commit

Permalink
fix(md-input): always run update on attached, solves a problem with v…
Browse files Browse the repository at this point in the history
…alues initialized before the view is attached
  • Loading branch information
Thanood committed Jun 13, 2016
1 parent 5d751ee commit fef2962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export class MdInput {
}
if (this.mdPlaceholder) {
this.input.setAttribute('placeholder', this.mdPlaceholder);
this.updateService.update();
}
this.updateService.update();
}
mdValueChanged() {
Expand Down

0 comments on commit fef2962

Please sign in to comment.