Hi Larion, You are right, it is just javascript. AngularJS is also javascript, so it can't run a digest cycle between 2 statements is it? example in a directive I do:
```javascript scope.model = 'blah'; // model is bound to something else way up in the hierarchy. // here is no time for angular to run anything! no way for it to update anything! scope.doSomething(); // doSomething is also way up in the hierarchy but on an other place then model.. ``` It is not only javascript that suffers from this. All code that runs in a single thread in any language will have the same issue. Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
