lifegadget / ui-slider

A visually attractive slider for ambitious Ember apps
https://ui-slider.firebaseapp.com/
MIT License
30 stars 39 forks source link

Slider ticksLabels do not line up with ticks #41

Open ryanrishi opened 6 years ago

ryanrishi commented 6 years ago

If I want to render a slider that goes from -100% → 0% → 200%, I pass in the following. Doing so results in a slider that looks correct, but the ticksLabels are not aligned with the ticks.

{{ui-slider
  value=value
  min=-100
  max=200
  ticks="-100, 0, 200"
  ticksLabels="-100%, 0%, 200%"}}

Here is a twiddle reproducing the issue.