Make sure that jQuery works even when the individual modules are loaded separately...
[jquery.git] / src / support.js
index cddd3dc..febff15 100644 (file)
@@ -1,3 +1,5 @@
+(function( jQuery ) {
+
 (function() {
 
        jQuery.support = {};
 
        // release memory in IE
        root = script = div = all = a = null;
-})();
+})( jQuery );
 
 jQuery.props = {
        "for": "htmlFor",
@@ -146,3 +148,5 @@ jQuery.props = {
        usemap: "useMap",
        frameborder: "frameBorder"
 };
+
+})( jQuery );