slider: rendering not updating when using ng-model-options
I'm using "ng-model-options" in order to get notified, when the user stops interacting with the slider. As soon as I define the "ng-model-options" the rendering no longer works when dragging the slider:
http://codepen.io/anon/pen/epqrNK
the problem explicitly occurs when using "updateOn" within "ng-model-options"
+1, also stutters with debounce
@AxxlForce @Rouby works fine for me codepen
@EladBezalel how is that working correctly? the slider doesn't move smoothly at all.
@EladBezalel This bug should not be closed: drag doesn't work in either Firefox nor Chrome in the given example.
There do appear to be some issues here. I created a CodePen with AngularJS 1.6.7 and 1.1.6 that better demonstrates the expectations (slider0) and the issues (slider1, slider2).
Perhaps a bit late, but I found this while looking for a very similar issue, and I think the root causes may be related. A few places in SliderDirective call ngModel.$viewValue = something instead of the (newer?) function ngModel.$setViewValue(), which explicitly handles updateOn behavior. Will try to do a PR, and hopefully one for this issue as well.