Swipe icon indicating copy to clipboard operation
Swipe copied to clipboard

Here is my fix for Chrome:

Open kentwidman opened this issue 11 years ago • 1 comments

Changes lines 173

style.webkitTransform = 'translate(' + dist + 'px,0)' + 'translateZ(0)';
style.msTransform =
style.MozTransform =
style.OTransform = 'translateX(' + dist + 'px)';

To this:

style.webkitTransform = 'translate(' + dist + 'px,0)' + 'translateZ(0)';
style.msTransform =
style.MozTransform =
style.OTransform =
style.transform = 'translateX(' + dist + 'px)';

kentwidman avatar Nov 14 '14 22:11 kentwidman

I'm sorry but could you explain what does this actually fix?

webflashing avatar Feb 12 '15 19:02 webflashing