Вход Регистрация
Файл: Main Website Files/assets/bower_components/jquery/src/core.js
Строк: 504
<?php
define
([
    
"./var/arr",
    
"./var/slice",
    
"./var/concat",
    
"./var/push",
    
"./var/indexOf",
    
"./var/class2type",
    
"./var/toString",
    
"./var/hasOwn",
    
"./var/support"
], function( arrsliceconcatpushindexOfclass2typetoStringhasOwnsupport ) {

var
    
// Use the correct document accordingly with window argument (sandbox)
    
document window.document,

    
version "@VERSION",

    
// Define a local copy of jQuery
    
jQuery = function( selectorcontext ) {
        
// The jQuery object is actually just the init constructor 'enhanced'
        // Need init if jQuery is called (just allow error to be thrown if not included)
        
return new jQuery.fn.initselectorcontext );
    },

    
// Support: Android<4.1
    // Make sure we trim BOM and NBSP
    
rtrim = /^[suFEFFxA0]+|[suFEFFxA0]+$/g,

    
// Matches dashed string for camelizing
    
rmsPrefix = /^-ms-/,
    
rdashAlpha = /-([da-z])/gi,

    
// Used by jQuery.camelCase as callback to replace()
    
fcamelCase = function( allletter ) {
        return 
letter.toUpperCase();
    };

jQuery.fn = jQuery.prototype = {
    
// The current version of jQuery being used
    
jqueryversion,

    
constructorjQuery,

    
// Start with an empty selector
    
selector"",

    
// The default length of a jQuery object is 0
    
length0,

    
toArray: function() {
        return 
slice.callthis );
    },

    
// Get the Nth element in the matched element set OR
    // Get the whole matched element set as a clean array
    
get: function( num ) {
        return 
num != null ?

            
// Return just the one element from the set
            
num thisnum this.length ] : thisnum ] ) :

            
// Return all the elements in a clean array
            
slice.callthis );
    },

    
// Take an array of elements and push it onto the stack
    // (returning the new matched element set)
    
pushStack: function( elems ) {

        
// Build a new jQuery matched element set
        
var ret jQuery.mergethis.constructor(), elems );

        
// Add the old object onto the stack (as a reference)
        
ret.prevObject this;
        
ret.context this.context;

        
// Return the newly-formed element set
        
return ret;
    },

    
// Execute a callback for every element in the matched set.
    // (You can seed the arguments with an array of args, but this is
    // only used internally.)
    
each: function( callbackargs ) {
        return 
jQuery.eachthiscallbackargs );
    },

    
map: function( callback ) {
        return 
this.pushStackjQuery.map(this, function( elem) {
            return 
callback.callelemielem );
        }));
    },

    
slice: function() {
        return 
this.pushStackslice.applythisarguments ) );
    },

    
first: function() {
        return 
this.eq);
    },

    
last: function() {
        return 
this.eq( -);
    },

    
eq: function( ) {
        var 
len this.length,
            
= ++ ( len );
        return 
this.pushStack>= && len ? [ this[j] ] : [] );
    },

    
end: function() {
        return 
this.prevObject || this.constructor(null);
    },

    
// For internal use only.
    // Behaves like an Array's method, not like a jQuery method.
    
pushpush,
    
sortarr.sort,
    
splicearr.splice
};

jQuery.extend jQuery.fn.extend = function() {
    var 
optionsnamesrccopycopyIsArray, clone,
        
target arguments[0] || {},
        
1,
        
length arguments.length,
        
deep false;

    
// Handle a deep copy situation
    
if ( typeof target === "boolean" ) {
        
deep target;

        
// Skip the boolean and the target
        
target arguments] || {};
        
i++;
    }

    
// Handle case when target is a string or something (possible in deep copy)
    
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
        
target = {};
    }

    
// Extend jQuery itself if only one argument is passed
    
if ( === length ) {
        
target this;
        
i--;
    }

    for ( ; 
lengthi++ ) {
        
// Only deal with non-null/undefined values
        
if ( (options arguments]) != null ) {
            
// Extend the base object
            
for ( name in options ) {
                
src targetname ];
                
copy optionsname ];

                
// Prevent never-ending loop
                
if ( target === copy ) {
                    continue;
                }

                
// Recurse if we're merging plain objects or arrays
                
if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray jQuery.isArray(copy)) ) ) {
                    if ( 
copyIsArray ) {
                        
copyIsArray false;
                        clone = 
src && jQuery.isArray(src) ? src : [];

                    } else {
                        clone = 
src && jQuery.isPlainObject(src) ? src : {};
                    }

                    
// Never move original objects, clone them
                    
targetname ] = jQuery.extenddeep, clone, copy );

                
// Don't bring in undefined values
                
} else if ( copy !== undefined ) {
                    
targetname ] = copy;
                }
            }
        }
    }

    
// Return the modified object
    
return target;
};

jQuery.extend({
    
// Unique for each copy of jQuery on the page
    
expando"jQuery" + ( version Math.random() ).replace( /D/g"" ),

    
// Assume jQuery is ready without the ready module
    
isReadytrue,

    
error: function( msg ) {
        throw new 
Errormsg );
    },

    
noop: function() {},

    
isFunction: function( obj ) {
        return 
jQuery.type(obj) === "function";
    },

    
isArray: Array.isArray,

    
isWindow: function( obj ) {
        return 
obj != null && obj === obj.window;
    },

    
isNumeric: function( obj ) {
        
// parseFloat NaNs numeric-cast false positives (null|true|false|"")
        // ...but misinterprets leading-number strings, particularly hex literals ("0x...")
        // subtraction forces infinities to NaN
        // adding 1 corrects loss of precision from parseFloat (#15100)
        
return !jQuery.isArrayobj ) && (obj parseFloatobj ) + 1) >= 0;
    },

    
isPlainObject: function( obj ) {
        
// Not plain objects:
        // - Any object or value whose internal [[Class]] property is not "[object Object]"
        // - DOM nodes
        // - window
        
if ( jQuery.typeobj ) !== "object" || obj.nodeType || jQuery.isWindowobj ) ) {
            return 
false;
        }

        if ( 
obj.constructor &&
                !
hasOwn.callobj.constructor.prototype"isPrototypeOf" ) ) {
            return 
false;
        }

        
// If the function hasn't returned already, we're confident that
        // |obj| is a plain object, created by {} or constructed with new Object
        
return true;
    },

    
isEmptyObject: function( obj ) {
        var 
name;
        for ( 
name in obj ) {
            return 
false;
        }
        return 
true;
    },

    
type: function( obj ) {
        if ( 
obj == null ) {
            return 
obj "";
        }
        
// Support: Android<4.0, iOS<6 (functionish RegExp)
        
return typeof obj === "object" || typeof obj === "function" ?
            
class2typetoString.call(obj) ] || "object" :
            
typeof obj;
    },

    
// Evaluates a script in a global context
    
globalEval: function( code ) {
        var 
script,
            
indirect = eval;

        
code jQuery.trimcode );

        if ( 
code ) {
            
// If the code includes a valid, prologue position
            // strict mode pragma, execute code by injecting a
            // script tag into the document.
            
if ( code.indexOf("use strict") === ) {
                
script document.createElement("script");
                
script.text code;
                
document.head.appendChildscript ).parentNode.removeChildscript );
            } else {
            
// Otherwise, avoid the DOM node creation, insertion
            // and removal by using an indirect global eval
                
indirectcode );
            }
        }
    },

    
// Convert dashed to camelCase; used by the css and data modules
    // Support: IE9-11+
    // Microsoft forgot to hump their vendor prefix (#9572)
    
camelCase: function( string ) {
        return 
string.replacermsPrefix"ms-" ).replacerdashAlphafcamelCase );
    },

    
nodeName: function( elemname ) {
        return 
elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
    },

    
// args is for internal usage only
    
each: function( objcallbackargs ) {
        var 
value,
            
0,
            
length obj.length,
            
isArray isArraylikeobj );

        if ( 
args ) {
            if ( 
isArray ) {
                for ( ; 
lengthi++ ) {
                    
value callback.applyobj], args );

                    if ( 
value === false ) {
                        break;
                    }
                }
            } else {
                for ( 
i in obj ) {
                    
value callback.applyobj], args );

                    if ( 
value === false ) {
                        break;
                    }
                }
            }

        
// A special, fast, case for the most common use of each
        
} else {
            if ( 
isArray ) {
                for ( ; 
lengthi++ ) {
                    
value callback.callobj], iobj] );

                    if ( 
value === false ) {
                        break;
                    }
                }
            } else {
                for ( 
i in obj ) {
                    
value callback.callobj], iobj] );

                    if ( 
value === false ) {
                        break;
                    }
                }
            }
        }

        return 
obj;
    },

    
// Support: Android<4.1
    
trim: function( text ) {
        return 
text == null ?
            
"" :
            ( 
text "" ).replacertrim"" );
    },

    
// results is for internal usage only
    
makeArray: function( arrresults ) {
        var 
ret results || [];

        if ( 
arr != null ) {
            if ( 
isArraylikeObject(arr) ) ) {
                
jQuery.mergeret,
                    
typeof arr === "string" ?
                    [ 
arr ] : arr
                
);
            } else {
                
push.callretarr );
            }
        }

        return 
ret;
    },

    
inArray: function( elemarr) {
        return 
arr == null ? -indexOf.callarrelem);
    },

    
merge: function( firstsecond ) {
        var 
len = +second.length,
            
0,
            
first.length;

        for ( ; 
lenj++ ) {
            
firsti++ ] = second];
        }

        
first.length i;

        return 
first;
    },

    
grep: function( elemscallbackinvert ) {
        var 
callbackInverse,
            
matches = [],
            
0,
            
length elems.length,
            
callbackExpect = !invert;

        
// Go through the array, only saving the items
        // that pass the validator function
        
for ( ; lengthi++ ) {
            
callbackInverse = !callbackelems], );
            if ( 
callbackInverse !== callbackExpect ) {
                
matches.pushelems] );
            }
        }

        return 
matches;
    },

    
// arg is for internal usage only
    
map: function( elemscallbackarg ) {
        var 
value,
            
0,
            
length elems.length,
            
isArray isArraylikeelems ),
            
ret = [];

        
// Go through the array, translating each of the items to their new values
        
if ( isArray ) {
            for ( ; 
lengthi++ ) {
                
value callbackelems], iarg );

                if ( 
value != null ) {
                    
ret.pushvalue );
                }
            }

        
// Go through every key on the object,
        
} else {
            for ( 
i in elems ) {
                
value callbackelems], iarg );

                if ( 
value != null ) {
                    
ret.pushvalue );
                }
            }
        }

        
// Flatten any nested arrays
        
return concat.apply( [], ret );
    },

    
// A global GUID counter for objects
    
guid1,

    
// Bind a function to a context, optionally partially applying any
    // arguments.
    
proxy: function( fn, context ) {
        var 
tmpargsproxy;

        if ( 
typeof context === "string" ) {
            
tmp = fn[ context ];
            
context = fn;
            fn = 
tmp;
        }

        
// Quick check to determine if target is callable, in the spec
        // this throws a TypeError, but we will just return undefined.
        
if ( !jQuery.isFunction( fn ) ) {
            return 
undefined;
        }

        
// Simulated bind
        
args slice.callarguments);
        
proxy = function() {
            return fn.
applycontext || thisargs.concatslice.callarguments ) ) );
        };

        
// Set the guid of unique handler to the same of original handler, so it can be removed
        
proxy.guid = fn.guid = fn.guid || jQuery.guid++;

        return 
proxy;
    },

    
nowDate.now,

    
// jQuery.support is not used in Core but other projects attach their
    // properties to it so it needs to exist.
    
supportsupport
});

// Populate the class2type map
jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(iname) {
    
class2type"[object " name "]" ] = name.toLowerCase();
});

function 
isArraylikeobj ) {
    var 
length obj.length,
        
type jQuery.typeobj );

    if ( 
type === "function" || jQuery.isWindowobj ) ) {
        return 
false;
    }

    if ( 
obj.nodeType === && length ) {
        return 
true;
    }

    return 
type === "array" || length === ||
        
typeof length === "number" && length && ( length in obj;
}

return 
jQuery;
});
?>
Онлайн: 1
Реклама