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.
To resolve this error, I rewrote the code as follows:
$new: function(isolate){varchild;if(isolate){child=newScope();child.$root=this.$root;// ensure that there is just one async queue per $rootScope and its childrenchild.$$asyncQueue=this.$$asyncQueue;child.$$postDigestQueue=this.$$postDigestQueue;}else{// Only create a child scope class if somebody asks for one,// but cache it to allow the VM to optimize lookups.if(!this.$$ChildScope){this.$$ChildScope=functionChildScope(){this['$$watchers']=this['$$nextSibling']=this['$$childHead']=this['$$childTail']=null;this['$$listeners']={};this['$$listenerCount']={};this['$id']=nextUid();this['$$ChildScope']=null;};this.$$ChildScope.prototype=this;}child=newthis.$$ChildScope();}child['this']=child;child['$parent']=this;child['$$prevSibling']=this.$$childTail;if(this.$$childHead){this.$$childTail.$$nextSibling=child;this.$$childTail=child;}else{this.$$childHead=this.$$childTail=child;}returnchild;},
The situation has improved, but I do not understand the reason...