at path:
ROOT
/
sistema
/
vendors
/
jquery
/
src
/
data.js
run:
R
W
Run
ajax
DIR
2026-04-09 04:12:40
R
W
Run
attributes
DIR
2026-04-09 04:12:40
R
W
Run
core
DIR
2026-04-09 04:12:40
R
W
Run
css
DIR
2026-04-09 04:12:40
R
W
Run
data
DIR
2026-04-09 04:12:40
R
W
Run
effects
DIR
2026-04-09 04:12:40
R
W
Run
event
DIR
2026-04-13 08:51:37
R
W
Run
exports
DIR
2026-04-09 04:12:40
R
W
Run
manipulation
DIR
2026-04-09 04:12:40
R
W
Run
queue
DIR
2026-04-09 04:12:40
R
W
Run
traversing
DIR
2026-04-13 08:51:37
R
W
Run
var
DIR
2026-04-09 04:12:40
R
W
Run
.jshintrc
475 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
ajax.js
21.32 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
attributes.js
202 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
callbacks.js
5.33 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
core.js
11.44 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
css.js
12.86 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
data.js
5 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
deferred.js
4.38 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
deprecated.js
636 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
dimensions.js
1.74 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
effects.js
15.52 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
event.js
18.77 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
intro.js
1.34 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
jquery.js
606 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
manipulation.js
12.07 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
offset.js
5.87 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
outro.js
20 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
queue.js
3 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
selector-native.js
5.52 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
selector-sizzle.js
342 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
selector.js
50 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
serialize.js
3.2 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
traversing.js
3.98 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
wrap.js
1.48 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
data.js
Save
define( [ "./core", "./core/access", "./data/var/dataPriv", "./data/var/dataUser" ], function( jQuery, access, dataPriv, dataUser ) { // 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 = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, rmultiDash = /[A-Z]/g; function dataAttr( elem, key, data ) { var name; // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); data = elem.getAttribute( name ); 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.test( data ) ? jQuery.parseJSON( data ) : data; } catch ( e ) {} // Make sure we set the data so it isn't changed later dataUser.set( elem, key, data ); } else { data = undefined; } } return data; } jQuery.extend( { hasData: function( elem ) { return dataUser.hasData( elem ) || dataPriv.hasData( elem ); }, data: function( elem, name, data ) { return dataUser.access( elem, name, data ); }, removeData: function( elem, name ) { dataUser.remove( elem, name ); }, // TODO: Now that all calls to _data and _removeData have been replaced // with direct calls to dataPriv methods, these can be deprecated. _data: function( elem, name, data ) { return dataPriv.access( elem, name, data ); }, _removeData: function( elem, name ) { dataPriv.remove( elem, name ); } } ); jQuery.fn.extend( { data: function( key, value ) { var i, name, data, elem = this[ 0 ], attrs = elem && elem.attributes; // Gets all values if ( key === undefined ) { if ( this.length ) { data = dataUser.get( elem ); if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { i = attrs.length; while ( i-- ) { // Support: IE11+ // The attrs elements can be null (#14894) if ( attrs[ i ] ) { name = attrs[ i ].name; if ( name.indexOf( "data-" ) === 0 ) { name = jQuery.camelCase( name.slice( 5 ) ); dataAttr( elem, name, data[ name ] ); } } } dataPriv.set( elem, "hasDataAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each( function() { dataUser.set( this, key ); } ); } return access( this, function( value ) { var data, camelKey; // 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 = dataUser.get( elem, key ) || // Try to find dashed key if it exists (gh-2779) // This is for 2.2.x only dataUser.get( elem, key.replace( rmultiDash, "-$&" ).toLowerCase() ); if ( data !== undefined ) { return data; } camelKey = jQuery.camelCase( key ); // Attempt to get data from the cache // with the key camelized data = dataUser.get( elem, camelKey ); if ( data !== undefined ) { return data; } // Attempt to "discover" the data in // HTML5 custom data-* attrs data = dataAttr( elem, camelKey, undefined ); if ( data !== undefined ) { return data; } // We tried really hard, but the data doesn't exist. return; } // Set the data... camelKey = jQuery.camelCase( key ); 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 = dataUser.get( this, camelKey ); // For HTML5 data-* attribute interop, we have to // store property names with dashes in a camelCase form. // This might not apply to all properties...* dataUser.set( this, camelKey, value ); // *... In the case of properties that might _actually_ // have dashes, we need to also store a copy of that // unchanged property. if ( key.indexOf( "-" ) > -1 && data !== undefined ) { dataUser.set( this, key, value ); } } ); }, null, value, arguments.length > 1, null, true ); }, removeData: function( key ) { return this.each( function() { dataUser.remove( this, key ); } ); } } ); return jQuery; } );