diff options
Diffstat (limited to 'ui/ui.spinner.js')
-rw-r--r-- | ui/ui.spinner.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.spinner.js b/ui/ui.spinner.js index 1413a4286..f68da1903 100644 --- a/ui/ui.spinner.js +++ b/ui/ui.spinner.js @@ -229,7 +229,7 @@ $.widget('ui.spinner', { _animate: function(d) { if (this.element.hasClass('ui-spinner-list') && ((d == 'up' && this._getValue() <= this.options.max) || (d == 'down' && this._getValue() >= this.options.min)) ) { this.element.animate({marginTop: '-' + this._getValue() * this.element.outerHeight() }, { - duration: 'fast', + duration: 'fast', queue: false }); } |