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
If we want to replace trigger with triggerMethod #2508 ...
trigger
triggerMethod
it will really need to support the same API.
this.trigger('foo bar') will trigger both foo and bar
this.trigger('foo bar')
foo
bar
this.triggerMethod('foo bar') will not call both onFoo and onBar
this.triggerMethod('foo bar')
onFoo
onBar
The text was updated successfully, but these errors were encountered:
paulfalgout
No branches or pull requests
If we want to replace
trigger
withtriggerMethod
#2508 ...it will really need to support the same API.
this.trigger('foo bar')
will trigger bothfoo
andbar
this.triggerMethod('foo bar')
will not call bothonFoo
andonBar
The text was updated successfully, but these errors were encountered: