]> source.dussan.org Git - jquery.git/commitdiff
Core: Don't expose jQuery.access 2524/head
authorMichał Gołębiowski <m.goleb@gmail.com>
Mon, 3 Aug 2015 17:31:25 +0000 (19:31 +0200)
committerMichał Gołębiowski <m.goleb@gmail.com>
Mon, 3 Aug 2015 17:33:38 +0000 (19:33 +0200)
jQuery.access was never documented, there is no need to keep it exposed.

Fixes gh-2513
Closes gh-2524

src/core/access.js

index 396c9e8dcb44965e48d6fc345152b3d0c6606f45..a006ed919efb47e30ce19e54766b7a4493ee0af1 100644 (file)
@@ -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;