diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-30 18:59:18 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-04-13 11:31:21 -0400 |
commit | f42a759b32668d22cdcf5dc9ad49df0e096f8151 (patch) | |
tree | d9a8992a64d9e3646615e41332ba692e1bf41c94 | |
parent | 3bfee654bfacaa4c3192c1b42675ae575933f662 (diff) | |
download | jquery-ui-f42a759b32668d22cdcf5dc9ad49df0e096f8151.tar.gz jquery-ui-f42a759b32668d22cdcf5dc9ad49df0e096f8151.zip |
Tabs: Fix line length violations
Ref gh-1690
-rw-r--r-- | ui/widgets/tabs.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/widgets/tabs.js b/ui/widgets/tabs.js index a35386541..a0a967c56 100644 --- a/ui/widgets/tabs.js +++ b/ui/widgets/tabs.js @@ -733,7 +733,8 @@ $.widget( "ui.tabs", { // meta-function to give users option to provide a href string instead of a numerical index. if ( typeof index === "string" ) { - index = this.anchors.index( this.anchors.filter( "[href$='" + $.ui.escapeSelector( index ) + "']" ) ); + index = this.anchors.index( this.anchors.filter( "[href$='" + + $.ui.escapeSelector( index ) + "']" ) ); } return index; |