We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
current refs keep an array with each event
events: type: [handler1, handler2]
ref.off 'value' isn't called until events[type] is empty. when we could do ref.off 'value', handler1 and stop receiving those events immediately.
ref.off 'value'
ref.off 'value', handler1
note this only affects refs with two listeners.
i think all of my code avoids this anyway by using multiple refs
document.get('property').on 'value', handler1 document.get('property').on 'value', handler2
which would then use separate refs and this would be a non-issue
The text was updated successfully, but these errors were encountered:
scien
No branches or pull requests
current refs keep an array with each event
ref.off 'value'
isn't called until events[type] is empty. when we could doref.off 'value', handler1
and stop receiving those events immediately.note this only affects refs with two listeners.
i think all of my code avoids this anyway by using multiple refs
which would then use separate refs and this would be a non-issue
The text was updated successfully, but these errors were encountered: