Skip to content

Commit a4c9809

Browse files
arschmitzscottgonzalez
authored andcommitted
Spinner: Fix line length violations
Ref gh-1690
1 parent f42a759 commit a4c9809

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

ui/widgets/spinner.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ $.widget( "ui.spinner", {
199199
return;
200200
}
201201

202-
this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event );
202+
this._repeat( null, $( event.currentTarget )
203+
.hasClass( "ui-spinner-up" ) ? 1 : -1, event );
203204
},
204205
"mouseup .ui-spinner-button": "_stop",
205206
"mouseenter .ui-spinner-button": function( event ) {
@@ -212,7 +213,8 @@ $.widget( "ui.spinner", {
212213
if ( this._start( event ) === false ) {
213214
return false;
214215
}
215-
this._repeat( null, $( event.currentTarget ).hasClass( "ui-spinner-up" ) ? 1 : -1, event );
216+
this._repeat( null, $( event.currentTarget )
217+
.hasClass( "ui-spinner-up" ) ? 1 : -1, event );
216218
},
217219

218220
// TODO: do we really want to consider this a stop?

0 commit comments

Comments
 (0)