Skip to content

Commit 5e926fc

Browse files
committed
Core: Don't expose jQuery.access
jQuery.access was never documented, there is no need to keep it exposed. Fixes gh-2513
1 parent 669cb16 commit 5e926fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/access.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ define([
44

55
// Multifunctional method to get and set values of a collection
66
// The value/s can optionally be executed if it's a function
7-
var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
7+
var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
88
var i = 0,
99
len = elems.length,
1010
bulk = key == null;

0 commit comments

Comments
 (0)