From 2fb719e5aa885232c5347576e9f9e1e341a7ba15 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Tue, 24 Jun 2014 12:52:15 +0200 Subject: [PATCH] Core: Consistently use local reference to access() Ref 3b53b75160606610cc8f87404f89fc9e10441c4b Closes gh-1605 --- src/core/access.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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