Hi Andrew, Yeah, I'm surprised there isn't an "afterDigestLoop" event. Seems like > something that would come up a lot. > O there is. I keep forgetting its name (and existence, it is something that almost never comes up in my programs) , so I looked it up ;) Its documented as part of $rootscope.Scope <https://docs.angularjs.org/api/ng/type/$rootScope.Scope>. Look up $evalAsync in there. But the $timeout is working just fine.
The reason it never comes up in my programs is that in cases like this, I use ngModel to write and read to the custom elements. I hook those up with small helper directives. that would look something like this: <div class="quill-item-text" hook-up-quill ng-model='text'> </div> in the `hook-up-quill` directive you can use elmement[0] to attach the editor and ngModelController to bind to the text var in the scope. Hope this helps you a bit, 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.
