powerange
powerange copied to clipboard
How to redraw slider on resize windows?
Resize 100% div and this - http://i.imgur.com/3SBKe6y.png
I solved it this way:
add this to powerange.js
Powerange.prototype.responsive = function() { if (this.options.step) this.step(this.slider.offsetWidth, this.handle.offsetWidth); this.setStart(this.element.value); };
and this to your script
$(window).resize(function() { your_slider_reference.responsive(); }