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-04 18:38:13 +0200 |
commit | 12230d39e1e897d5edfaad846650a535c578c992 (patch) | |
tree | bef813f2d54d26e58099c0904488c046b40124eb /src | |
parent | b988c0e45d0d876ae7d12e7b361a25a8ea76cf2f (diff) | |
download | jquery-12230d39e1e897d5edfaad846650a535c578c992.tar.gz jquery-12230d39e1e897d5edfaad846650a535c578c992.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 5767b98ef..1e03cb8af 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, length = elems.length, bulk = key == null; |