feat: set disable style of device name in side menu (#656)

* feat: visualise disabled state of the 'Device name' input control

* fix: original value handling
This commit is contained in:
Róbert Kiss
2018-05-27 02:30:41 +02:00
committed by László Monda
parent 8e20c85e07
commit ee53a0df9b
9 changed files with 161 additions and 53 deletions

View File

@@ -0,0 +1,10 @@
<input #inputControl
cancelable
[class]="css"
type="text"
[disabled]="disabled"
[(ngModel)]="model"
(blur)="blur()"
(focus)="focus()"
(keyup.enter)="keyEnter($event)"
(keyup)="calculateTextWidth($event.target.value)">