You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Most directives call $scope.$apply, which is currently poorly implemented in Angular. The call is proxied to $rootScope.$digest, which has the effect of dirty checking ALL the scopes.
As I'm in charge of hooking up the data onto the scopes, I already know what needs to be dirty checked and what not. If I've set up my data to flow inherently the same as the scopes, there should be an option inside Angular to tweak the default nasty dirty-checking behaviour.
This naive design decision has massive performance implications.