From ad1b647973030c5201d20c343856f6300e8e625a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 22 May 2012 15:13:45 -0400 Subject: [PATCH] Tabs: Don't blur anchors on activation. --- ui/jquery.ui.tabs.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index 12b12ff5c..d97a12101 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -317,7 +317,6 @@ $.widget( "ui.tabs", { ( clickedIsActive && !options.collapsible ) || // allow canceling activation ( this._trigger( "beforeActivate", event, eventData ) === false ) ) { - anchor[ 0 ].blur(); return; } @@ -335,7 +334,6 @@ $.widget( "ui.tabs", { if ( toShow.length ) { // TODO make passing in node possible this.load( this.lis.index( tab ), event ); - anchor[ 0 ].blur(); } this._toggle( event, eventData ); }, -- 2.39.5