From 9adfad19865837f5dffedb1eb41e407f196ca515 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Mon, 3 Aug 2015 19:31:25 +0200 Subject: [PATCH] Core: Don't expose jQuery.access jQuery.access was never documented, there is no need to keep it exposed. Fixes gh-2513 Closes gh-2524 --- 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 396c9e8dc..a006ed919 100644 --- a/src/core/access.js +++ b/src/core/access.js @@ -4,7 +4,7 @@ define([ // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function -var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, len = elems.length, bulk = key == null; -- 2.39.5