Вход Регистрация
Файл: Main Website Files/assets/bower_components/jquery/src/data.js
Строк: 168
<?php
define
([
    
"./core",
    
"./var/rnotwhite",
    
"./core/access",
    
"./data/var/data_priv",
    
"./data/var/data_user"
], function( jQueryrnotwhiteaccessdata_privdata_user ) {

//    Implementation Summary
//
//    1. Enforce API surface and semantic compatibility with 1.9.x branch
//    2. Improve the module's maintainability by reducing the storage
//        paths to a single mechanism.
//    3. Use the same single mechanism to support "private" and "user" data.
//    4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
//    5. Avoid exposing implementation details on user objects (eg. expando properties)
//    6. Provide a clear path for implementation upgrade to WeakMap in 2014

var rbrace = /^(?:{[wW]*}|[[wW]*])$/,
    
rmultiDash = /([A-Z])/g;

function 
dataAttrelemkeydata ) {
    var 
name;

    
// If nothing was found internally, try to fetch any
    // data from the HTML5 data-* attribute
    
if ( data === undefined && elem.nodeType === ) {
        
name "data-" key.replacermultiDash"-$1" ).toLowerCase();
        
data elem.getAttributename );

        if ( 
typeof data === "string" ) {
            try {
                
data data === "true" true :
                    
data === "false" false :
                    
data === "null" null :
                    
// Only convert to a number if it doesn't change the string
                    
+data "" === data ? +data :
                    
rbrace.testdata ) ? jQuery.parseJSONdata ) :
                    
data;
            } catch( 
) {}

            
// Make sure we set the data so it isn't changed later
            
data_user.setelemkeydata );
        } else {
            
data undefined;
        }
    }
    return 
data;
}

jQuery.extend({
    
hasData: function( elem ) {
        return 
data_user.hasDataelem ) || data_priv.hasDataelem );
    },

    
data: function( elemnamedata ) {
        return 
data_user.accesselemnamedata );
    },

    
removeData: function( elemname ) {
        
data_user.removeelemname );
    },

    
// TODO: Now that all calls to _data and _removeData have been replaced
    // with direct calls to data_priv methods, these can be deprecated.
    
_data: function( elemnamedata ) {
        return 
data_priv.accesselemnamedata );
    },

    
_removeData: function( elemname ) {
        
data_priv.removeelemname );
    }
});

jQuery.fn.extend({
    
data: function( keyvalue ) {
        var 
inamedata,
            
elem this],
            
attrs elem && elem.attributes;

        
// Gets all values
        
if ( key === undefined ) {
            if ( 
this.length ) {
                
data data_user.getelem );

                if ( 
elem.nodeType === && !data_priv.getelem"hasDataAttrs" ) ) {
                    
attrs.length;
                    while ( 
i-- ) {

                        
// Support: IE11+
                        // The attrs elements can be null (#14894)
                        
if ( attrs] ) {
                            
name attrs].name;
                            if ( 
name.indexOf"data-" ) === ) {
                                
name jQuery.camelCasename.slice(5) );
                                
dataAttrelemnamedataname ] );
                            }
                        }
                    }
                    
data_priv.setelem"hasDataAttrs"true );
                }
            }

            return 
data;
        }

        
// Sets multiple values
        
if ( typeof key === "object" ) {
            return 
this.each(function() {
                
data_user.setthiskey );
            });
        }

        return 
accessthis, function( value ) {
            var 
data,
                
camelKey jQuery.camelCasekey );

            
// The calling jQuery object (element matches) is not empty
            // (and therefore has an element appears at this[ 0 ]) and the
            // `value` parameter was not undefined. An empty jQuery object
            // will result in `undefined` for elem = this[ 0 ] which will
            // throw an exception if an attempt to read a data cache is made.
            
if ( elem && value === undefined ) {
                
// Attempt to get data from the cache
                // with the key as-is
                
data data_user.getelemkey );
                if ( 
data !== undefined ) {
                    return 
data;
                }

                
// Attempt to get data from the cache
                // with the key camelized
                
data data_user.getelemcamelKey );
                if ( 
data !== undefined ) {
                    return 
data;
                }

                
// Attempt to "discover" the data in
                // HTML5 custom data-* attrs
                
data dataAttrelemcamelKeyundefined );
                if ( 
data !== undefined ) {
                    return 
data;
                }

                
// We tried really hard, but the data doesn't exist.
                
return;
            }

            
// Set the data...
            
this.each(function() {
                
// First, attempt to store a copy or reference of any
                // data that might've been store with a camelCased key.
                
var data data_user.getthiscamelKey );

                
// For HTML5 data-* attribute interop, we have to
                // store property names with dashes in a camelCase form.
                // This might not apply to all properties...*
                
data_user.setthiscamelKeyvalue );

                
// *... In the case of properties that might _actually_
                // have dashes, we need to also store a copy of that
                // unchanged property.
                
if ( key.indexOf("-") !== -&& data !== undefined ) {
                    
data_user.setthiskeyvalue );
                }
            });
        }, 
nullvaluearguments.length 1nulltrue );
    },

    
removeData: function( key ) {
        return 
this.each(function() {
            
data_user.removethiskey );
        });
    }
});

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