aboutsummaryrefslogtreecommitdiffstats
path: root/src/traversing.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2012-06-04 12:48:18 -0400
committerRick Waldron <waldron.rick@gmail.com>2012-06-04 12:48:18 -0400
commit7c23b77af2477417205fda9bde5208a81e57e40e (patch)
treed325a34f92a4792fc5ee6aee8266b86bd0e25a98 /src/traversing.js
parent9a3046c3752b80da7526dce34968b8422f3d92f8 (diff)
downloadjquery-7c23b77af2477417205fda9bde5208a81e57e40e.tar.gz
jquery-7c23b77af2477417205fda9bde5208a81e57e40e.zip
Strips IIFEs from modules; Always require built jQuery for tests.
Diffstat (limited to 'src/traversing.js')
-rw-r--r--src/traversing.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/traversing.js b/src/traversing.js
index a5c08fba5..3544f5be8 100644
--- a/src/traversing.js
+++ b/src/traversing.js
@@ -1,11 +1,8 @@
-(function( jQuery ) {
-
var runtil = /Until$/,
rparentsprev = /^(?:parents|prevUntil|prevAll)/,
// Note: This RegExp should be improved, or likely pulled from Sizzle
rmultiselector = /,/,
isSimple = /^.[^:#\[\.,]*$/,
- slice = Array.prototype.slice,
POS = jQuery.expr.match.globalPOS,
// methods guaranteed to produce a unique set when starting from a unique set
guaranteedUnique = {
@@ -299,5 +296,3 @@ function winnow( elements, qualifier, keep ) {
return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;
});
}
-
-})( jQuery );