Merge branch 'closestbug-6700' of http://github.com/ajpiano/jquery into ajpiano-close...
[jquery.git] / src / traversing.js
index 583726b..f7dde44 100644 (file)
@@ -1,3 +1,5 @@
+(function( jQuery ) {
+
 var runtil = /Until$/,
        rparentsprev = /^(?:parents|prevUntil|prevAll)/,
        // Note: This RegExp should be improved, or likely pulled from Sizzle
@@ -275,3 +277,5 @@ function winnow( elements, qualifier, keep ) {
                return (jQuery.inArray( elem, qualifier ) >= 0) === keep;
        });
 }
+
+})( jQuery );