Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Slider: Update UI when min or max option changes. Fixes #7477 - Setti…
…ng min/max options does not update view.
  • Loading branch information
petersendidit authored and scottgonzalez committed Oct 17, 2012
1 parent 5e24a1c commit f37008e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ui/jquery.ui.slider.js
Expand Up @@ -509,6 +509,12 @@ $.widget( "ui.slider", $.ui.mouse, {
}
this._animateOff = false;
break;
case "min":
case "max":
this._animateOff = true;
this._refreshValue();
this._animateOff = false;
break;
}
},

Expand Down

0 comments on commit f37008e

Please sign in to comment.