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
This commit is contained in:
Michał Gołębiowski 2015-08-03 19:31:25 +02:00
parent b988c0e45d
commit 12230d39e1

View 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,
length = elems.length,
bulk = key == null;