diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-04-02 15:20:37 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-04-02 15:20:37 +0200 |
commit | 1f0e0b2bb158f6f51b1b65066ba6608471aa6034 (patch) | |
tree | ddba28a1e773ec68e002e4b4e2b44f129364c2cd /ui/jquery.ui.tabs.js | |
parent | ff72467038f35fd7d031b33cf61d37ee02535a52 (diff) | |
parent | 48e5c853f995a825dd9d14cd2d8f592037f8505c (diff) | |
download | jquery-ui-1f0e0b2bb158f6f51b1b65066ba6608471aa6034.tar.gz jquery-ui-1f0e0b2bb158f6f51b1b65066ba6608471aa6034.zip |
Merge branch 'master' into grunt
Diffstat (limited to 'ui/jquery.ui.tabs.js')
-rw-r--r-- | ui/jquery.ui.tabs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index ba48c3770..c9300e69b 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -434,7 +434,7 @@ $.widget( "ui.tabs", { // meta-function to give users option to provide a href string instead of a numerical index. // also sanitizes numerical indexes to valid values. if ( typeof index == "string" ) { - index = this.anchors.index( this.anchors.filter( "[href$=" + index + "]" ) ); + index = this.anchors.index( this.anchors.filter( "[href$='" + index + "']" ) ); } return index; |