Hi, I changed plunker to use angular 1.3.16, one-way binding, but that didn't help. I already tested this earlier in my actual page. Running Chrome "Timeline" I got:
<https://lh3.googleusercontent.com/-Ur2a1z_nv0c/VYrsnqA_-HI/AAAAAAAAAYQ/UPN0fbKP6BI/s1600/timeline.PNG> self.defer = function(fn, delay) { var timeoutId; outstandingRequestCount++; timeoutId = setTimeout(function() { //5326 - THIS LINE delete pendingDeferIds[timeoutId]; completeOutstandingRequest(fn); }, delay || 0); pendingDeferIds[timeoutId] = true; return timeoutId; }; I couldn't figure out what exactly is slowing down the page. On Wednesday, June 24, 2015 at 12:26:53 PM UTC-3, Sander Elias wrote: > > Hi Jobero, > > The easiest way, is update to 1.4.1, and make use of 1 time bindings. > Also, google for a watch-counter, and take a look on how many watches you > created. Bring this number down as much as possible. > > 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.
