diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-03-30 23:23:38 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-03-30 23:23:38 -0400 |
commit | 1a167767305202797cf4c839eb64bd7adfb00182 (patch) | |
tree | f2d06a977c3f8c032845ee3606aca335c5d44666 /src/traversing.js | |
parent | 6da3885cc38043fd8d384d1184468b0a2fba9fd9 (diff) | |
download | jquery-1a167767305202797cf4c839eb64bd7adfb00182.tar.gz jquery-1a167767305202797cf4c839eb64bd7adfb00182.zip |
Remove test for bug #7369 to move the fix to a separate branch for a sooner pull
Diffstat (limited to 'src/traversing.js')
-rw-r--r-- | src/traversing.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/traversing.js b/src/traversing.js index 49197c1f7..91bc017e5 100644 --- a/src/traversing.js +++ b/src/traversing.js @@ -112,7 +112,7 @@ jQuery.fn.extend({ return ret; } - + // String var pos = POS.test( selectors ) || typeof selectors !== "string" ? jQuery( selectors, context || this.context ) : @@ -135,7 +135,7 @@ jQuery.fn.extend({ } } - ret = ret.length > 1 ? jQuery.unique(ret) : ret; + ret = ret.length > 1 ? jQuery.unique( ret ) : ret; return this.pushStack( ret, "closest", selectors ); }, |