This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ user enters text into the text field.
388
388
1. the {@link ng.directive:ngModel ng-model} and {@link
389
389
ng.directive:input input} {@link guide/directive
390
390
directive} set up a `keydown` listener on the `<input>` control.
391
- 2. the {@link ng.$interpolate {{name}} } interpolation
391
+ 2. the {@link ng.$interpolate interpolation}
392
392
sets up a {@link ng.$rootScope.Scope#$watch $watch} to be notified of
393
393
`name` changes.
394
394
2. During the runtime phase:
@@ -400,8 +400,8 @@ user enters text into the text field.
400
400
3. Angular applies the `name = 'X';` to the model.
401
401
4. The {@link ng.$rootScope.Scope#$digest $digest} loop begins
402
402
5. The {@link ng.$rootScope.Scope#$watch $watch} list detects a change
403
- on the `name` property and notifies the {@link ng.$interpolate
404
- {{name}} } interpolation, which in turn updates the DOM.
403
+ on the `name` property and notifies the {@link ng.$interpolate interpolation},
404
+ which in turn updates the DOM.
405
405
6. Angular exits the execution context, which in turn exits the `keydown` event and with it
406
406
the JavaScript execution context.
407
407
7. The browser re-renders the view with update text.
You can’t perform that action at this time.
0 commit comments