We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30d431b commit 720e9d3Copy full SHA for 720e9d3
ui/jquery.ui.spinner.js
@@ -359,20 +359,18 @@ $.widget('ui.spinner', {
359
360
stepUp: function(steps) {
361
this._spin((steps || 1) * this.options.step, null);
362
- return this;
363
},
364
365
stepDown: function(steps) {
366
this._spin((steps || 1) * -this.options.step, null);
367
368
369
370
pageUp: function(pages) {
371
- return this.stepUp((pages || 1) * pageModifier);
+ this.stepUp((pages || 1) * pageModifier);
372
373
374
pageDown: function(pages) {
375
- return this.stepDown((pages || 1) * pageModifier);
+ this.stepDown((pages || 1) * pageModifier);
376
377
378
value: function(newVal) {
0 commit comments