From: Alexander Schmitz Date: Wed, 30 Mar 2016 23:00:14 +0000 (-0400) Subject: Spinner: Fix line length violations X-Git-Tag: 1.12.0-rc.2~59 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a4c9809340818bf3dc92881cc51ae8ecb3e081d5;p=jquery-ui.git Spinner: Fix line length violations Ref gh-1690 --- 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?