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 has been archived by the owner on Jan 15, 2021. It is now read-only.
I'd prefer to just get IE11 working with the latest, but until then I need to support singleSelectPlaceholder and version 5.2.5 does not support that. What is the recommended approach to accomplish singleSelectPlaceholder in previous versions of picky?
Update... I was able to use version 5.3.0 which has the singleSelectPlaceholder available. Version 5.3.1 must be where things broke. Hopefully the versions after 5.3.0 don't have any critical fixes I need.
I'll keep an eye on this for updates. Thanks!
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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?
The text was updated successfully, but these errors were encountered: