malsup / blockui

jQuery BlockUI Plugin
http://jquery.malsup.com/block/
1.69k stars 506 forks source link

Jquery Migrate says "isFunction" is deprecated #161

Open deadlydud opened 1 year ago

deadlydud commented 1 year ago

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 commented 1 year ago

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