mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 23:38:05 -05:00
jquery data: adding missing semicolons
This commit is contained in:
@@ -25,9 +25,9 @@ jQuery.extend({
|
||||
// Prevent overriding the named cache with undefined values
|
||||
if ( data !== undefined ) thisCache[ name ] = data;
|
||||
|
||||
if(name === true) return thisCache
|
||||
else if(name) return thisCache[name]
|
||||
else return id
|
||||
if(name === true) return thisCache;
|
||||
else if(name) return thisCache[name];
|
||||
else return id;
|
||||
},
|
||||
|
||||
removeData: function( elem, name ) {
|
||||
|
||||
Reference in New Issue
Block a user