diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-30 19:00:14 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-04-13 11:31:34 -0400 |
commit | a4c9809340818bf3dc92881cc51ae8ecb3e081d5 (patch) | |
tree | 8420c647e9ae493a2d9c5f2b2a663ac21bd834cb | |
parent | f42a759b32668d22cdcf5dc9ad49df0e096f8151 (diff) | |
download | jquery-ui-a4c9809340818bf3dc92881cc51ae8ecb3e081d5.tar.gz jquery-ui-a4c9809340818bf3dc92881cc51ae8ecb3e081d5.zip |
Spinner: Fix line length violations
Ref gh-1690
-rw-r--r-- | ui/widgets/spinner.js | 6 |
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? |