Swipe
Swipe copied to clipboard
Here is my fix for Chrome:
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)';
I'm sorry but could you explain what does this actually fix?