You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2021. It is now read-only.
Version
v5.3.2
Here's what went wrong:
The page throws a generic JavaScript Syntax error "SCRIPT1002"
Drilling into it seems to point to this:
const debounce = (fn, delay) => { let timeoutID = null; return function(...args) { if (timeoutID) { clearTimeout(timeoutID); } const that = this; timeoutID = setTimeout(() => { fn.apply(that, args); }, delay); }; };NOTE: Using version 5.2.5 works correctly in IE11.
Example
Create a Code Sandbox, you can fork this: Demo Picky
Sorry - Code Sandbox doesn't work in IE11....
Thoughts?