thumbnail-scroller icon indicating copy to clipboard operation
thumbnail-scroller copied to clipboard

Deprecated load event

Open dxvargas opened this issue 7 years ago • 0 comments

Load event was deprecated in JQuery 1.8 and removed in 3.0 . It's still used in this lib here: $(window).load(function(){ ... }

It results in this error: TypeError: a.indexOf is not a function[Learn More]

It's an easy fix, just make it like this: $(window).on("load", function(){ ... }

dxvargas avatar Oct 15 '17 17:10 dxvargas