]> source.dussan.org Git - jquery-ui.git/commitdiff
Spinner: Fix typo
authorKyle Rosenberg <kyle.rosenberg@gmail.com>
Wed, 26 Oct 2016 14:12:12 +0000 (09:12 -0500)
committerScott González <scott.gonzalez@gmail.com>
Wed, 2 Nov 2016 16:48:00 +0000 (12:48 -0400)
Closes gh-1764

ui/widgets/spinner.js

index 447944344fae6d54b06e640d9c77026d5004fc50..c63f4526a139c06db4b976dbe4fb95c2315d6f28 100644 (file)
@@ -35,7 +35,7 @@
        }
 }( function( $ ) {
 
-function spinnerModifer( fn ) {
+function spinnerModifier( fn ) {
        return function() {
                var previous = this.element.val();
                fn.apply( this, arguments );
@@ -438,7 +438,7 @@ $.widget( "ui.spinner", {
                this.buttons.button( value ? "disable" : "enable" );
        },
 
-       _setOptions: spinnerModifer( function( options ) {
+       _setOptions: spinnerModifier( function( options ) {
                this._super( options );
        } ),
 
@@ -505,7 +505,7 @@ $.widget( "ui.spinner", {
                this.uiSpinner.replaceWith( this.element );
        },
 
-       stepUp: spinnerModifer( function( steps ) {
+       stepUp: spinnerModifier( function( steps ) {
                this._stepUp( steps );
        } ),
        _stepUp: function( steps ) {
@@ -515,7 +515,7 @@ $.widget( "ui.spinner", {
                }
        },
 
-       stepDown: spinnerModifer( function( steps ) {
+       stepDown: spinnerModifier( function( steps ) {
                this._stepDown( steps );
        } ),
        _stepDown: function( steps ) {
@@ -525,11 +525,11 @@ $.widget( "ui.spinner", {
                }
        },
 
-       pageUp: spinnerModifer( function( pages ) {
+       pageUp: spinnerModifier( function( pages ) {
                this._stepUp( ( pages || 1 ) * this.options.page );
        } ),
 
-       pageDown: spinnerModifer( function( pages ) {
+       pageDown: spinnerModifier( function( pages ) {
                this._stepDown( ( pages || 1 ) * this.options.page );
        } ),
 
@@ -537,7 +537,7 @@ $.widget( "ui.spinner", {
                if ( !arguments.length ) {
                        return this._parse( this.element.val() );
                }
-               spinnerModifer( this._value ).call( this, newVal );
+               spinnerModifier( this._value ).call( this, newVal );
        },
 
        widget: function() {