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.
Why we need additional reference to the element for the handler function.
As I can see it never used ...
Maybe it's safe to delete this line.
Now app consume less memory and event listeners released properly.
But I still see growing number of dom elements...
Looks like on removing it from the dom it still have some references unreleased...
The text was updated successfully, but these errors were encountered:
Thanks for reporting. Here is a jsfiddle showing that calling $element.off('click', handler) does not call removeEventListener of the original element: http://jsfiddle.net/VmTsD/
Please note that there is a memory leak problem with V8 and Angular: See #4864.
However, if you find other reasons like the one in this bug, we would be glad to know about them!
Had memory leak on removing elements from the dom (switching views, ng-switch ...)
Solved it partially by tweaking jqlite implementation.
When jqlite remove event listeners it passes wrong function reference
(not the same it passed on add listener).
Actually it try to pass array of functions - so it doesn't remove it properly.
https://github.com/angular/angular.js/blob/master/src/jqLite.js#L218
https://github.com/angular/angular.js/blob/master/src/jqLite.js#L224
To fix it I replaced it with actual handler that was added:
It is very easy to check by breakpoints these lines..
https://github.com/angular/angular.js/blob/master/src/jqLite.js#L652
Why we need additional reference to the element for the handler function.
As I can see it never used ...
Maybe it's safe to delete this line.
Now app consume less memory and event listeners released properly.
But I still see growing number of dom elements...
Looks like on removing it from the dom it still have some references unreleased...
The text was updated successfully, but these errors were encountered: