aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2016-03-30 19:00:14 -0400
committerScott González <scott.gonzalez@gmail.com>2016-04-13 11:31:34 -0400
commita4c9809340818bf3dc92881cc51ae8ecb3e081d5 (patch)
tree8420c647e9ae493a2d9c5f2b2a663ac21bd834cb /ui
parentf42a759b32668d22cdcf5dc9ad49df0e096f8151 (diff)
downloadjquery-ui-a4c9809340818bf3dc92881cc51ae8ecb3e081d5.tar.gz
jquery-ui-a4c9809340818bf3dc92881cc51ae8ecb3e081d5.zip
Spinner: Fix line length violations
Ref gh-1690
Diffstat (limited to 'ui')
-rw-r--r--ui/widgets/spinner.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/widgets/spinner.js b/ui/widgets/spinner.js
index e875f10ad..447944344 100644
--- a/ui/widgets/spinner.js
+++ b/ui/widgets/spinner.js
@@ -199,7 +199,8 @@ $.widget( "ui.spinner", {
return;
}
- this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event );
+ this._repeat( null, $( event.currentTarget )
+ .hasClass( "ui-spinner-up" ) ? 1 : -1, event );
},
"mouseup .ui-spinner-button": "_stop",
"mouseenter .ui-spinner-button": function( event ) {
@@ -212,7 +213,8 @@ $.widget( "ui.spinner", {
if ( this._start( event ) === false ) {
return false;
}
- this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event );
+ this._repeat( null, $( event.currentTarget )
+ .hasClass( "ui-spinner-up" ) ? 1 : -1, event );
},
// TODO: do we really want to consider this a stop?