From eeab75da0048e9708b7bfd1f3e933da7fab050de 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 2fb719e5aa885232c5347576e9f9e1e341a7ba15 Ref 2063d6c1896b0c46c39fa0fdecef817f2e6f57c3 --- 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 97b410b40..5767b98ef 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 -- 2.39.5