From 87f78973b919130880a42651596edbae0b2a7741 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 30 Aug 2011 20:22:35 -0400 Subject: [PATCH] Tabs: Pass the required deep parameter to cloneNode(). Fixes completely broken tabs in Opera. Thanks monoblaine. --- ui/jquery.ui.tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.39.5