You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user can type a value in to a textbox elsewhere, which causes the offsetInches binding to kick in, and the slider is handed a new value, e.g. 123. But immediately the slider would report an action that the value had changed to 10.
I set up the slider like this in the template:
The user can type a value in to a textbox elsewhere, which causes the
offsetInches
binding to kick in, and the slider is handed a new value, e.g. 123. But immediately the slider would report an action that the value had changed to 10.Looks like this also happens to be the default
max
value: https://github.com/lifegadget/ui-slider/blob/master/addon/components/ui-slider.js#L38Discovered that if I explicitly set the
min
andmax
properties to 0 and 1024 respectively, the slider behaves as corrected.Maybe the
min
andmax
props should float depending onticks
?The text was updated successfully, but these errors were encountered: