-
-
Notifications
You must be signed in to change notification settings - Fork 105
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
How to remove event listeners? #579
Labels
Comments
It makes sense, and currently there is no method like |
Implemented in #587. Please wait for the next release. |
Released 4.0.3. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to this project, I can easily add UI functionality.
Currently I use the following code to dynamically create and delete folders:
From time to time I would remove the old ones and add new ones to dynamically update the interface. But every time I remove and add, presumably the hander for the fold event is not released, resulting in a memory leak. Is there any way to perform an action like
this.pane.off('fold')
?The text was updated successfully, but these errors were encountered: