-
Notifications
You must be signed in to change notification settings - Fork 274
Angular's Debug Data must be enabled for scope and isolateScope to work #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Please fix this, it's a horribly bad bug. Or explain the logic behind why it cant be fixed |
Please fix this as enable debug cause the performance issue. |
I am not sure how to fix this as the tree control relays on getting the scope.$id |
Has somebody found something working to fix this error ??? I'm experiencing the same error... |
Guys, there is no fix to this problem save to rewrite the tree control to On Mon, Mar 23, 2015 at 10:33 AM, Benjamin CARADEUC <
|
+1 |
1 similar comment
+1 |
Has anyone been able to solve this? |
Just read about using a cloned |
made a similar solution - hope it will be sufficient. |
The watcher for expandedNodes relies on $liElment.scope() (line 239) to return a valid value. When Angular's Debug Data is disabled (typical for production), this method returns null. This generates an exception. It also disables tree-control from responding to changes in expandedNodes.
See issue: angular/angular.js#9515
The text was updated successfully, but these errors were encountered: