Skip to content

Commit 05feb2a

Browse files
committed
Tabs: Fix coding style in 'mouse.js'.
1 parent eda5571 commit 05feb2a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ui/widgets/mouse.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ return $.widget( "ui.mouse", {
9191
var that = this,
9292
btnIsLeft = event.which === 1,
9393
elIsCancel = typeof this.options.cancel === "function" ?
94-
this.options.cancel.call(event.target, event) :
95-
( typeof this.options.cancel === "string" ?
96-
$( event.target ).closest( this.options.cancel ).length :
97-
false);
94+
this.options.cancel.call( event.target, event ) :
95+
( typeof this.options.cancel === "string" ?
96+
$( event.target ).closest( this.options.cancel ).length :
97+
false );
9898
if ( !btnIsLeft || elIsCancel || !this._mouseCapture( event ) ) {
9999
return true;
100100
}

0 commit comments

Comments
 (0)