Skip to content

Commit eb3586d

Browse files
committed
fix: makes NgModel work in strict mode
1 parent 5b5ffe7 commit eb3586d

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

modules/angular2/src/forms/directives/ng_model.ts

+7-12
Original file line numberDiff line numberDiff line change
@@ -38,30 +38,25 @@ const formControlBinding = CONST_EXPR(new Binding(NgControl, {toAlias: forwardRe
3838
exportAs: 'form'
3939
})
4040
export class NgModel extends NgControl {
41-
control: Control;
42-
ngModel: EventEmitter;
41+
_control = new Control("");
42+
_added = false;
43+
ngModel = new EventEmitter();
4344
model: any;
44-
_added: boolean;
45-
46-
constructor() {
47-
super();
48-
this.control = new Control("");
49-
this.ngModel = new EventEmitter();
50-
this._added = false;
51-
}
5245

5346
onChange(c) {
5447
if (!this._added) {
55-
setUpControl(this.control, this);
48+
setUpControl(this._control, this);
5649
this.control.updateValidity();
5750
this._added = true;
5851
};
5952

6053
if (StringMapWrapper.contains(c, "model")) {
61-
this.control.updateValue(this.model);
54+
this._control.updateValue(this.model);
6255
}
6356
}
6457

58+
get control() { return this._control; }
59+
6560
get path(): List<string> { return []; }
6661

6762
viewToModelUpdate(newValue: any): void { ObservableWrapper.callNext(this.ngModel, newValue); }

0 commit comments

Comments
 (0)