From 089da4ea777ed5c30dfc835b70b953c86943d62e Mon Sep 17 00:00:00 2001 From: John Resig Date: Mon, 5 Jan 2009 21:59:07 +0000 Subject: [PATCH] Brought in a fix from Sizzle - IE doesn't have .contains on XML elements. --- src/selector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/selector.js b/src/selector.js index b3d8dbc..8ade53b 100644 --- a/src/selector.js +++ b/src/selector.js @@ -778,7 +778,7 @@ function dirCheck( dir, cur, doneName, checkSet, nodeCheck ) { var contains = document.compareDocumentPosition ? function(a, b){ return a.compareDocumentPosition(b) & 16; } : function(a, b){ - return a !== b && a.contains(b); + return a !== b && a.contains ? a.contains(b) : true; }; // EXPOSE -- 1.7.10.4