Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

IE11 isn't working in latest version of Picky #229

@mgpGit-zz

Description

@mgpGit-zz

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions