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
Given the following code
$(document).on('ajaxSend', someHandler).on('ajaxSuccess', anotherHandler);
It produces me event-scope error on the second on call. But there is no Backbone usage in this code, so error shouldn't appear there
event-scope
on
The text was updated successfully, but these errors were encountered:
Thanks for the issue. Interesting. I guess that's because of the chained call. Not really sure how I can fix this, right now, but I'll take a look.
Sorry, something went wrong.
Thanks for the fast feedback!
Also, I'd like to add, that it is not necessary to have several on calls. This code also produces warning:
$(document).doSomething().on();
It happens when you have on not the first in methods chain.
No branches or pull requests
Given the following code
It produces me
event-scope
error on the secondon
call. But there is no Backbone usage in this code, so error shouldn't appear thereThe text was updated successfully, but these errors were encountered: