diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 13:42:02 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-14 13:42:02 -0400 |
commit | f1e1f8ae15d29432d3aade28291f41166aa6b77a (patch) | |
tree | c49c9094cac8e45cd019a77b2f70cc60ce63a326 | |
parent | d740e450aa7bd8a4f254f0268d74636d5920c60a (diff) | |
download | jquery-ui-f1e1f8ae15d29432d3aade28291f41166aa6b77a.tar.gz jquery-ui-f1e1f8ae15d29432d3aade28291f41166aa6b77a.zip |
Tabs: Fixed event triggering for select method.
-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 aed4ba8fb..9edaaf17b 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -1210,7 +1210,7 @@ if ( $.uiBackCompat !== false ) { return; } } - this.anchors.eq( index ).trigger( this.options.event + ".tabs" ); + this.anchors.eq( index ).trigger( this.options.event + this.eventNamespace ); } }); |