diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-08-03 19:31:25 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-08-03 19:33:38 +0200 |
commit | 9adfad19865837f5dffedb1eb41e407f196ca515 (patch) | |
tree | fd5b16a8144dba782128336fe6fc5b90186f0e3e /src | |
parent | 669cb16d763cb5486dadd56ec15a17b2b0303571 (diff) | |
download | jquery-9adfad19865837f5dffedb1eb41e407f196ca515.tar.gz jquery-9adfad19865837f5dffedb1eb41e407f196ca515.zip |
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
Diffstat (limited to 'src')
-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 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; |