aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tabs.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-08-30 20:22:35 -0400
committerScott González <scott.gonzalez@gmail.com>2011-08-30 20:22:35 -0400
commit87f78973b919130880a42651596edbae0b2a7741 (patch)
tree97b547208fd3e69ecdbaf3799f4fd620e0bf959d /ui/jquery.ui.tabs.js
parentdfe75e1b552013c440186645a7a1ae9ec3c757b5 (diff)
downloadjquery-ui-87f78973b919130880a42651596edbae0b2a7741.tar.gz
jquery-ui-87f78973b919130880a42651596edbae0b2a7741.zip
Tabs: Pass the required deep parameter to cloneNode(). Fixes completely broken tabs in Opera.
Thanks monoblaine.
Diffstat (limited to 'ui/jquery.ui.tabs.js')
-rw-r--r--ui/jquery.ui.tabs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.tabs.js b/ui/jquery.ui.tabs.js
index b6f178ed9..d4c5f6b69 100644
--- a/ui/jquery.ui.tabs.js
+++ b/ui/jquery.ui.tabs.js
@@ -25,7 +25,7 @@ var isLocal = (function() {
return function( 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();
+ anchor = anchor.cloneNode( false );
return anchor.hash.length > 1 &&
anchor.href.replace( rhash, "" ) === currentPage;
};