Skip to content

Commit

Permalink
Fixes the issue of the number on the marker getting flip over in RTL …
Browse files Browse the repository at this point in the history
…mode on iOS. (#129)

By default, velocity.js sets the property 'mobileHA' to true to animate it properly on very older versions of mobile.
  • Loading branch information
Chetan Hajare authored and tomgreenfield committed Dec 12, 2017
1 parent 212456a commit 67bfdf5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/adapt-contrib-slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ define([
left: newPosition
}, {
duration: 200,
easing: "linear"
easing: "linear",
mobileHA: false
});
},

Expand Down

0 comments on commit 67bfdf5

Please sign in to comment.