Skip to content

Commit 1ec796a

Browse files
committed
cleanup(change_detection): rename field name
1 parent 9240b09 commit 1ec796a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/angular2/src/change_detection/abstract_change_detector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import {ChangeDetector, CHECK_ALWAYS, CHECK_ONCE, CHECKED, DETACHED} from './int
55
export class AbstractChangeDetector extends ChangeDetector {
66
children:List;
77
parent:ChangeDetector;
8-
status:string;
8+
mode:string;
99

1010
constructor() {
1111
this.children = [];
12-
this.status = CHECK_ALWAYS;
12+
this.mode = CHECK_ALWAYS;
1313
}
1414

1515
addChild(cd:ChangeDetector) {

0 commit comments

Comments
 (0)