Projet

Général

Profil

Paste
Télécharger (1,37 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / flexslider-2.5.0 / bower_components / jquery / src / intro.js @ 0aee3c58

1
/*!
2
 * jQuery JavaScript Library v@VERSION
3
 * http://jquery.com/
4
 *
5
 * Includes Sizzle.js
6
 * http://sizzlejs.com/
7
 *
8
 * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
9
 * Released under the MIT license
10
 * http://jquery.org/license
11
 *
12
 * Date: @DATE
13
 */
14

    
15
(function( global, factory ) {
16

    
17
        if ( typeof module === "object" && typeof module.exports === "object" ) {
18
                // For CommonJS and CommonJS-like environments where a proper window is present,
19
                // execute the factory and get jQuery
20
                // For environments that do not inherently posses a window with a document
21
                // (such as Node.js), expose a jQuery-making factory as module.exports
22
                // This accentuates the need for the creation of a real window
23
                // e.g. var jQuery = require("jquery")(window);
24
                // See ticket #14549 for more info
25
                module.exports = global.document ?
26
                        factory( global, true ) :
27
                        function( w ) {
28
                                if ( !w.document ) {
29
                                        throw new Error( "jQuery requires a window with a document" );
30
                                }
31
                                return factory( w );
32
                        };
33
        } else {
34
                factory( global );
35
        }
36

    
37
// Pass this if window is not defined yet
38
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
39

    
40
// Can't do this because several apps including ASP.NET trace
41
// the stack via arguments.caller.callee and Firefox dies if
42
// you try to trace through "use strict" call chains. (#13335)
43
// Support: Firefox 18+
44
//"use strict";