Skip to content
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

Jquery Migrate says "isFunction" is deprecated #161

Open
deadlydud opened this issue Mar 8, 2023 · 1 comment
Open

Jquery Migrate says "isFunction" is deprecated #161

deadlydud opened this issue Mar 8, 2023 · 1 comment

Comments

@deadlydud
Copy link

line 29
var setExpr = $.isFunction( document.createElement('div').style.setExpression );

if changed to:
var setExpr = document.createElement('div').style.setExpression;

then jquery migrate 3.4.x no longer complains about the isFunction being deprecated.

@deadlydud
Copy link
Author

also:
line 554 and 556, change .bind( to .on( and .unbind( to .off( seems to make jQueryMigrate happy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant