Skip to content

Commit

Permalink
Core: Consistently use local reference to access()
Browse files Browse the repository at this point in the history
Ref 3b53b75
Closes gh-1605
  • Loading branch information
Krinkle authored and markelog committed Jul 12, 2014
1 parent bcca4f0 commit 2fb719e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/access.js
Expand Up @@ -13,7 +13,7 @@ var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGe
if ( jQuery.type( key ) === "object" ) {
chainable = true;
for ( i in key ) {
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
access( elems, fn, i, key[i], true, emptyGet, raw );
}

// Sets one value
Expand Down

0 comments on commit 2fb719e

Please sign in to comment.