diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-27 17:05:25 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-27 17:06:01 +0100 |
commit | 0d53fbfd0b7651652601b3b8577225ab753aab44 (patch) | |
tree | decc5a1a6519fd90372d311eda76dd6ddc21b502 /ui/jquery.ui.spinner.js | |
parent | 1045d3a3522b06b617d912432b0da62138ea0fc3 (diff) | |
download | jquery-ui-0d53fbfd0b7651652601b3b8577225ab753aab44.tar.gz jquery-ui-0d53fbfd0b7651652601b3b8577225ab753aab44.zip |
Spinner: Trigger start/spin/stop events when calling step/page methods. Fixes #8901 - Spinner does not fire start/spin/stop events when calling stepUp()/Down(), pageUp()/Down() methods
Diffstat (limited to 'ui/jquery.ui.spinner.js')
-rw-r--r-- | ui/jquery.ui.spinner.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ui/jquery.ui.spinner.js b/ui/jquery.ui.spinner.js index aeffe0a3e..1881c99ed 100644 --- a/ui/jquery.ui.spinner.js +++ b/ui/jquery.ui.spinner.js @@ -453,14 +453,20 @@ $.widget( "ui.spinner", { this._stepUp( steps ); }), _stepUp: function( steps ) { - this._spin( (steps || 1) * this.options.step ); + if ( this._start() ) { + this._spin( (steps || 1) * this.options.step ); + this._stop(); + } }, stepDown: modifier(function( steps ) { this._stepDown( steps ); }), _stepDown: function( steps ) { - this._spin( (steps || 1) * -this.options.step ); + if ( this._start() ) { + this._spin( (steps || 1) * -this.options.step ); + this._stop(); + } }, pageUp: modifier(function( pages ) { |