-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
Gridstack does not work out of the box with jQuery 3.x. The problem is that it uses the deprecated size() function (https://api.jquery.com/size/). In order to make it work one can register the size function as
//size function for gridstack
$.fn.size = function(){
return this.length;
};