From fef29620d720a3c62f06e3aa6dbf019508a32470 Mon Sep 17 00:00:00 2001 From: Daniel Bendel Date: Mon, 13 Jun 2016 20:07:17 +0200 Subject: [PATCH] fix(md-input): always run update on attached, solves a problem with values initialized before the view is attached --- src/input/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/input.js b/src/input/input.js index 36633b6c..4ad5abfd 100644 --- a/src/input/input.js +++ b/src/input/input.js @@ -49,8 +49,8 @@ export class MdInput { } if (this.mdPlaceholder) { this.input.setAttribute('placeholder', this.mdPlaceholder); - this.updateService.update(); } + this.updateService.update(); } mdValueChanged() {