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.
This is indeed similar to #5301. I prefer the idea of detaching/re-attaching a scope (as proposed in #5301), than allowing a scope to control what happens with its child-scopes. Its scope should be in charge of its own fate.
@gkalpak unfortuntately detatching/re-attaching doesn't support my use case, where the current scope could be digested without child scopes being digested.
Also @vahan-hartooni's approach is cleaner code-wise - just stop the recursion when the flag is true. There are a ton of methods/functions with /*recursive*/true parameters. IMHO this would be understood intuitively by most devs.
Contrast detach/re-attach requiring saving of scopes temporarily and making sure they execute after re-attach, which I personally think is more hacky and for that reason less likely to be implemented.
Its scope should be in charge of its own fate.
Yes, but .digest() already digests those child scopes, and therefore already "control[s] what happens with its child-scopes"
Feature request for 1.x... Something like
which, when optional parameter
selfOnly
is true, only digests the$scope
and not its children. My motivation is explained here.Here's another use case. In fact using Vahan's approach is even better, since it would solve my use case
....but also allow for his
pauseWatchers
directive to be easily implemented, which solves #5301, another issue in which I have great interest.The text was updated successfully, but these errors were encountered: