aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-06-14 13:42:02 -0400
committerScott González <scott.gonzalez@gmail.com>2012-06-14 13:42:02 -0400
commitf1e1f8ae15d29432d3aade28291f41166aa6b77a (patch)
treec49c9094cac8e45cd019a77b2f70cc60ce63a326
parentd740e450aa7bd8a4f254f0268d74636d5920c60a (diff)
downloadjquery-ui-f1e1f8ae15d29432d3aade28291f41166aa6b77a.tar.gz
jquery-ui-f1e1f8ae15d29432d3aade28291f41166aa6b77a.zip
Tabs: Fixed event triggering for select method.
-rw-r--r--ui/jquery.ui.tabs.js2
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 );
}
});