StickySort
StickySort copied to clipboard
Event selectors deprecated and code had to be changed.
The event selectors, .load, .scroll, etc no longer work in jQuery 3 - to make your library work I changed the to .on('event', etc). See diff below.
`diff ~/StickySort/jquery.stickysort.js jquery.stickysort.js 202,203c202,203 < .load(setWidths) < .resize($.debounce(settings.resizeThrottle, function () {
.on('load',setWidths) .on('resize',$.debounce(settings.resizeThrottle, function () {
207c207 < .scroll($.throttle(settings.scrollThrottle, repositionSticky));
.on('scroll',$.throttle(settings.scrollThrottle, repositionSticky));
`