+(function( jQuery ) {
+
var jsc = jQuery.now(),
rscript = /<script(.|\s)*?\/script>/gi,
rselectTextarea = /select|textarea/i,
// For backwards compatibility
jQuery.extend( jQuery.ajax );
+
+})( jQuery );
+(function( jQuery ) {
+
var rclass = /[\n\t]/g,
rspace = /\s+/,
rreturn = /\r/g,
}
}
});
+
+})( jQuery );
+(function( jQuery ) {
+
var ralpha = /alpha\([^)]*\)/,
ropacity = /opacity=([^)]*)/,
rdashAlpha = /-([a-z])/ig,
return !jQuery.expr.filters.hidden( elem );
};
}
+
+})( jQuery );
+(function( jQuery ) {
+
var windowData = {};
jQuery.extend({
});
}
});
+
+})( jQuery );
+(function( jQuery ) {
+
// Create innerHeight, innerWidth, outerHeight and outerWidth methods
jQuery.each([ "Height", "Width" ], function( i, name ) {
};
});
+
+})( jQuery );
+(function( jQuery ) {
+
var elemdisplay = {},
rfxtypes = /toggle|show|hide/,
rfxnum = /^([+\-]=)?([\d+.\-]+)(.*)$/,
}).length;
};
}
+
+})( jQuery );
+(function( jQuery ) {
+
var rnamespaces = /\.(.*)$/,
fcleanup = function( nm ) {
return nm.replace(/[^\w\s\.\|`]/g, function( ch ) {
}
});
}
+
+})( jQuery );
+(function( jQuery ) {
+
var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
rleadingWhitespace = /^\s+/,
rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g,
if ( elem.parentNode ) {
elem.parentNode.removeChild( elem );
}
-}
\ No newline at end of file
+}
+
+})( jQuery );
+(function( jQuery ) {
+
if ( "getBoundingClientRect" in document.documentElement ) {
jQuery.fn.offset = function( options ) {
var elem = this[0];
elem.defaultView || elem.parentWindow :
false;
}
+
+})( jQuery );
+(function( jQuery ) {
+
jQuery.extend({
queue: function( elem, type, data ) {
if ( !elem ) {
return this.queue( type || "fx", [] );
}
});
+
+})( jQuery );
+(function( jQuery ) {
+
(function() {
jQuery.support = {};
// release memory in IE
root = script = div = all = a = null;
-})();
+})( jQuery );
jQuery.props = {
"for": "htmlFor",
usemap: "useMap",
frameborder: "frameBorder"
};
+
+})( jQuery );
+(function( jQuery ) {
+
var runtil = /Until$/,
rparentsprev = /^(?:parents|prevUntil|prevAll)/,
// Note: This RegExp should be improved, or likely pulled from Sizzle
return (jQuery.inArray( elem, qualifier ) >= 0) === keep;
});
}
+
+})( jQuery );
}
test("noConflict", function() {
- expect(6);
+ expect(7);
var $$ = jQuery;
equals( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" );
equals( jQuery, originaljQuery, "Make sure jQuery was reverted." );
equals( $, original$, "Make sure $ was reverted." );
+ ok( $$("#main").html("test"), "Make sure that jQuery still works." );
jQuery = $$;
});