Skip to content

Commit

Permalink
Core: Don't expose jQuery.access
Browse files Browse the repository at this point in the history
jQuery.access was never documented, there is no need to keep it exposed.

Fixes gh-2513
Closes gh-2524
  • Loading branch information
mgol committed Aug 3, 2015
1 parent 669cb16 commit 9adfad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/access.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9adfad1

Please sign in to comment.