diff options
author | David Petersen <public@petersendidit.com> | 2012-10-16 12:16:13 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-16 22:58:42 -0400 |
commit | 8ce35198daf261370e2962f4c429bf4fa998b2df (patch) | |
tree | 9803306354c15291487c89c88ca2d254febd3778 /ui | |
parent | 1a696678878f48748912b4c9d5df6da91c760b98 (diff) | |
download | jquery-ui-8ce35198daf261370e2962f4c429bf4fa998b2df.tar.gz jquery-ui-8ce35198daf261370e2962f4c429bf4fa998b2df.zip |
Tabs: Remove anchor clone in isLocal. Fixed #8653 - Tabs are not working inside iframe in IE6/7.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.tabs.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js index 7d38fb46e..0d7f85fbc 100644 --- a/ui/jquery.ui.tabs.js +++ b/ui/jquery.ui.tabs.js @@ -22,9 +22,6 @@ function getNextTabId() { } function isLocal( anchor ) { - // clone the node to work around IE 6 not normalizing the href property - // if it's manually set, i.e., a.href = "#foo" kills the normalization - anchor = anchor.cloneNode( false ); return anchor.hash.length > 1 && anchor.href.replace( rhash, "" ) === location.href.replace( rhash, "" ); } |