-
Notifications
You must be signed in to change notification settings - Fork 12
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
don't rely on Events? #763
Comments
It's basically referring to #490, where things like Emitter would be strictly better for performance and usability. |
|
I have no strong preferences on it. If it's helpful to wipe the listeners, go ahead. |
If I wipe listeners, I suspect that's going to cause problems throughout PhET code. I typically check Closing. |
I'm working on an issue related to
dispose
, and I ran across this comment inNode.dispose
:4892 Events.prototype.dispose.call( this ); // TODO: don't rely on Events
What does "don't rely on Events" mean? Is there a problem with
Events.dispose
?....The text was updated successfully, but these errors were encountered: