Skip to content

Commit 2fb719e

Browse files
Krinklemarkelog
authored andcommitted
Core: Consistently use local reference to access()
Ref 3b53b75 Closes jquerygh-1605
1 parent bcca4f0 commit 2fb719e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/access.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGe
1313
if ( jQuery.type( key ) === "object" ) {
1414
chainable = true;
1515
for ( i in key ) {
16-
jQuery.access( elems, fn, i, key[i], true, emptyGet, raw );
16+
access( elems, fn, i, key[i], true, emptyGet, raw );
1717
}
1818

1919
// Sets one value

0 commit comments

Comments
 (0)