aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/support.js')
-rw-r--r--src/support.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js
index cddd3dc3b..febff1597 100644
--- a/src/support.js
+++ b/src/support.js
@@ -1,3 +1,5 @@
+(function( jQuery ) {
+
(function() {
jQuery.support = {};
@@ -132,7 +134,7 @@
// 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 );