diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2014-06-24 12:52:15 +0200 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-07-12 22:10:45 +0400 |
commit | 2fb719e5aa885232c5347576e9f9e1e341a7ba15 (patch) | |
tree | 56273cc5069001a6a4343e62ed3891ed9f76fc57 | |
parent | bcca4f041b4c98dc9cb127ea3a2a7f40d2db4796 (diff) | |
download | jquery-2fb719e5aa885232c5347576e9f9e1e341a7ba15.tar.gz jquery-2fb719e5aa885232c5347576e9f9e1e341a7ba15.zip |
Core: Consistently use local reference to access()
Ref 3b53b75160606610cc8f87404f89fc9e10441c4b
Closes gh-1605
-rw-r--r-- | src/core/access.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/access.js b/src/core/access.js index b6110c8f3..396c9e8dc 100644 --- a/src/core/access.js +++ b/src/core/access.js @@ -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 |