-
Notifications
You must be signed in to change notification settings - Fork 8
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
Create missing rules for deprecated jQuery features #32
Comments
…d-1.8 Also tweak no-event-shorthand rule to skip `$.method()`. Part of #32
The only way to do this one is assume that in
|
* Add no-on-ready rule and add to deprecated 1.8 Part of #32 * no-animate-on -> no-on-ready in test name
@Krinkle can you explain the difference between things that have been added to deprecated.js (https://github.com/jquery/jquery/commits/master/test/unit/deprecated.js), and things that are actually listed as deprecated in the docs, for example $.isArray was deprecated in 2016, but isn't listed as such anywhere. |
@edg2s The only difference is time and effort spent to date :) - This has been fixed meanwhile (ref jquery/api.jquery.com#950). |
Listed as "FIXME" in index.js:
$.fx.interval
$(...).context
$.support
deferred.pipe()
$(...).error()
$(...).load(fn)
(excluding$(...).load(url,...)
)$(...).toggle(fn,fn)
(excluding https://api.jquery.com/toggle/)$(...).unload()
deferred.isRejected()/isResolved()
$.sub()
$(...).selector
$.boxModel
$.browser
Update from #52 and https://api.jquery.com/ready/:
$(...).ready()
(3.0)$(document).on( "ready", handler )
(1.8)The text was updated successfully, but these errors were encountered: