From: Scott González Date: Thu, 14 Jun 2012 17:42:02 +0000 (-0400) Subject: Tabs: Fixed event triggering for select method. X-Git-Tag: 1.9.0-beta.1~41 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f1e1f8ae15d29432d3aade28291f41166aa6b77a;p=jquery-ui.git Tabs: Fixed event triggering for select method. --- 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 ); } });