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
In the destroy function of collection-repeat directive, computedStyleNode never has a parent.
Moreover using removeChild just detach the node, but it doesn't remove events attached on it (or on childs) by other directives (like ng-click).
This causes the detached DOM of the scroll view to be kept in memory.
If I replace it with angular.element(computedStyleNode).remove(); all works fine.
The text was updated successfully, but these errors were encountered:
I've closed this issue because my sensors indicated it was old and inactive, and may have already been fixed in recent versions of Ionic. However, if you are still experiencing this issue, please feel free to reopen this issue by creating a new one, and include any examples and other necessary information, so that we can look into it further.
Type: perf
Platform: all
In the destroy function of collection-repeat directive, computedStyleNode never has a parent.
Moreover using removeChild just detach the node, but it doesn't remove events attached on it (or on childs) by other directives (like ng-click).
This causes the detached DOM of the scroll view to be kept in memory.
If I replace it with
angular.element(computedStyleNode).remove();
all works fine.The text was updated successfully, but these errors were encountered: