StickySort icon indicating copy to clipboard operation
StickySort copied to clipboard

Event selectors deprecated and code had to be changed.

Open nicciniamh opened this issue 7 years ago • 0 comments

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));

`

nicciniamh avatar Feb 10 '18 18:02 nicciniamh