kornelski / slip

Slip.js — UI library for manipulating lists via swipe and drag gestures
BSD 2-Clause "Simplified" License
2.44k stars 213 forks source link

No working on ie8 or ie9 #25

Closed jcdsr closed 9 years ago

jcdsr commented 9 years ago

I really like you solution, however addEventListener is no supported on ie 8 or ie9. Any ideas on how to make your JS works on those browsers?

kornelski commented 9 years ago

Sorry, I have no plans to support ie8. ie9 should support addEventListener, so the problem is probably elsewhere.

slip is mainly for mobile, where these are irrelevant, and workarounds for crappy browsers may unnecessarily complicate the codebase, so I'd rather avoid that.

If you're targeting legacy desktop browsers, you'll need to use a different library.

jcdsr commented 9 years ago

I totally agree with you, however the client request this support. You know clients.

I wondering if a ie8 and ie9 shim could work with your code?

kornelski commented 9 years ago

Maybe a polyfill would help (try FT's https://cdn.polyfill.io/v1/). I don't have IE VMs installed currently, so I can't test.