From f1e1f8ae15d29432d3aade28291f41166aa6b77a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 14 Jun 2012 13:42:02 -0400 Subject: [PATCH] Tabs: Fixed event triggering for select method. --- ui/jquery.ui.tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index aed4ba8fbde..9edaaf17be0 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 ); } });