thumbnail-scroller
thumbnail-scroller copied to clipboard
Deprecated load event
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(){ ... }