Alexander Rubanov

Results 8 comments of Alexander Rubanov

can confirm, it doesn't work in ios safari

this directive works for ios https://github.com/ittus/vue-long-click maybe you can get some ideas there from code or someone, who need ios support right now, can use it instead

The problem isn't that lottie doesn't work in IE, it's totally ok. The problem is lottie ruins other non-es6 scripts in a vendor-bundle, which are included after it, when executed...

> @unbrokenclayman you can use this code to fix that problem: > ` $(window) .off('keyup.myNamespace') .on('keyup.myNamespace', function (e) { if (e && e.which) { switch (e.which) { case 35: case...

> Do you have an animation on the scroll? The setTimeout function on my example must have longer duration than the scroll duration. Nope, just native chrome scrolling. I trying...

Adding code like this at the end of plugin keyHandler function helps: ``` } else if(e.keyCode==36) { e.preventDefault(); index = 0; move(index, false); } else if(e.keyCode==35) { e.preventDefault(); index =...

Ah, there already was a pull request #203