-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
restore vs. reset #10
Comments
How to use reset or update the slider with an initial value from code? I am using Angular 2 |
@koolhuman this has nothing to do with this issue. However use |
@MortenHe, @novitskiy-aleksei this is now fixed with release 2.0.0 |
IonRangeSliderComponent.prototype.restore = function () { jQuery(this.inputElem).data("ionRangeSlider").restore(); };
has to be
IonRangeSliderComponent.prototype.restore = function () { jQuery(this.inputElem).data("ionRangeSlider").reset(); };
in file \ng2-ion-range-slider\lib\ion-range-slider.component.js
The text was updated successfully, but these errors were encountered: