aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-05-22 15:13:45 -0400
committerScott González <scott.gonzalez@gmail.com>2012-05-22 15:13:45 -0400
commitad1b647973030c5201d20c343856f6300e8e625a (patch)
tree58ad9e27c8ccbeeba575faea15ad2cbb3a67e4ea /ui
parentbbb44f9e67070d32d7961d675b04b5ff8134d2ae (diff)
downloadjquery-ui-ad1b647973030c5201d20c343856f6300e8e625a.tar.gz
jquery-ui-ad1b647973030c5201d20c343856f6300e8e625a.zip
Tabs: Don't blur anchors on activation.
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.tabs.js2
1 files changed, 0 insertions, 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 );
},