Gridstack with jQuery 3.x
Navigation Menu
{{ message }}
gridstack / gridstack.js Public
- Notifications You must be signed in to change notification settings
- Fork 1.4k
Closed
Closed
Description
opened
on Jul 28, 2016Gridstack 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;
};