mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Spinner: Fixed mousewheel stop timer.
This commit is contained in:
parent
4694f85d4c
commit
26bcf972e6
2
ui/jquery.ui.spinner.js
vendored
2
ui/jquery.ui.spinner.js
vendored
@ -93,7 +93,7 @@ $.widget( "ui.spinner", {
|
||||
|
||||
this._spin( (delta > 0 ? 1 : -1) * this.options.step, event );
|
||||
clearTimeout( this.mousewheelTimer );
|
||||
this.mousewheelTimer = setTimeout(function() {
|
||||
this.mousewheelTimer = this._delay(function() {
|
||||
if ( this.spinning ) {
|
||||
this._stop( event );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user