mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-20 16:30:26 +00:00
docs($rootScope): fix iteration limit described by $watch, it's actually 10 as of now
This commit is contained in:
parent
afed23c001
commit
7210b7ae1d
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ function $RootScopeProvider(){
|
|||
* have adverse memory and performance implications.
|
||||
* - The watch `listener` may change the model, which may trigger other `listener`s to fire. This
|
||||
* is achieved by rerunning the watchers until no changes are detected. The rerun iteration
|
||||
* limit is 100 to prevent an infinite loop deadlock.
|
||||
* limit is 10 to prevent an infinite loop deadlock.
|
||||
*
|
||||
*
|
||||
* If you want to be notified whenever {@link ng.$rootScope.Scope#$digest $digest} is called,
|
||||
|
|
|
|||
Loading…
Reference in a new issue