2016-03-07 16:57:35 +00:00
|
|
|
/*jshint unused:false */
|
2009-01-04 23:34:18 +00:00
|
|
|
/*!
|
|
|
|
* jQuery JavaScript Library v@VERSION
|
2015-11-29 17:41:37 +00:00
|
|
|
* https://jquery.com/
|
2009-01-04 23:34:18 +00:00
|
|
|
*
|
2009-12-19 02:23:26 +00:00
|
|
|
* Includes Sizzle.js
|
2015-11-29 17:41:37 +00:00
|
|
|
* https://sizzlejs.com/
|
2012-08-09 02:12:10 +00:00
|
|
|
*
|
2015-01-01 19:34:48 +00:00
|
|
|
* Copyright jQuery Foundation and other contributors
|
2012-08-09 02:12:10 +00:00
|
|
|
* Released under the MIT license
|
2015-11-29 17:41:37 +00:00
|
|
|
* https://jquery.org/license
|
2009-12-19 02:23:26 +00:00
|
|
|
*
|
2010-12-30 06:34:48 +00:00
|
|
|
* Date: @DATE
|
2009-01-04 23:34:18 +00:00
|
|
|
*/
|
2016-03-07 16:57:35 +00:00
|
|
|
( function( global, factory ) {
|
2013-07-04 18:00:26 +00:00
|
|
|
|
|
|
|
if ( typeof module === "object" && typeof module.exports === "object" ) {
|
2016-03-07 16:57:35 +00:00
|
|
|
|
2014-04-25 22:26:36 +00:00
|
|
|
// For CommonJS and CommonJS-like environments where a proper `window`
|
|
|
|
// is present, execute the factory and get jQuery.
|
|
|
|
// For environments that do not have a `window` with a `document`
|
|
|
|
// (such as Node.js), expose a factory as module.exports.
|
|
|
|
// This accentuates the need for the creation of a real `window`.
|
2013-07-04 18:00:26 +00:00
|
|
|
// e.g. var jQuery = require("jquery")(window);
|
2014-04-25 22:26:36 +00:00
|
|
|
// See ticket #14549 for more info.
|
2013-11-17 00:06:44 +00:00
|
|
|
module.exports = global.document ?
|
2013-12-20 23:39:16 +00:00
|
|
|
factory( global, true ) :
|
2013-11-15 22:18:22 +00:00
|
|
|
function( w ) {
|
|
|
|
if ( !w.document ) {
|
2013-11-17 00:06:44 +00:00
|
|
|
throw new Error( "jQuery requires a window with a document" );
|
2013-11-15 22:18:22 +00:00
|
|
|
}
|
|
|
|
return factory( w );
|
|
|
|
};
|
2013-07-04 18:00:26 +00:00
|
|
|
} else {
|
2013-11-17 00:06:44 +00:00
|
|
|
factory( global );
|
2013-07-04 18:00:26 +00:00
|
|
|
}
|
|
|
|
|
2014-01-08 13:44:10 +00:00
|
|
|
// Pass this if window is not defined yet
|
2016-03-07 16:57:35 +00:00
|
|
|
}( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
|
2013-02-01 22:17:39 +00:00
|
|
|
|
2016-04-15 21:13:59 +00:00
|
|
|
// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
|
|
|
|
// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
|
|
|
|
// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
|
|
|
|
// enough that all such attempts are guarded in a try block.
|
|
|
|
"use strict";
|
2016-03-07 16:57:35 +00:00
|
|
|
|
|
|
|
// @CODE
|
|
|
|
// build.js inserts compiled jQuery here
|
|
|
|
|
|
|
|
return jQuery;
|
|
|
|
} ) );
|