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
When using multiple instances of the slider pause and other methods refer to the last created slider.
Maybe a quick fix would be
....//in the jquery init functionreturnthis.each(function(element){// ready for take-off -- associate the new fraction slider directly to the jquery object$(this).data('fractionSlider',newFractionSlider(this,options));});
.......//example for the pause methodpause : function(){$(this).data('fractionSlider').pause(true);},
....
The text was updated successfully, but these errors were encountered:
When using multiple instances of the slider pause and other methods refer to the last created slider.
Maybe a quick fix would be
The text was updated successfully, but these errors were encountered: