Make sure that jQuery works even when the individual modules are loaded separately...
[jquery.git] / src / queue.js
index e52f37b..11c658f 100644 (file)
@@ -1,3 +1,5 @@
+(function( jQuery ) {
+
 jQuery.extend({
        queue: function( elem, type, data ) {
                if ( !elem ) {
@@ -88,3 +90,5 @@ jQuery.fn.extend({
                return this.queue( type || "fx", [] );
        }
 });
+
+})( jQuery );