diff options
Diffstat (limited to 'src/attributes/prop.js')
-rw-r--r-- | src/attributes/prop.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/attributes/prop.js b/src/attributes/prop.js index 0acd62a2c..817a1b621 100644 --- a/src/attributes/prop.js +++ b/src/attributes/prop.js @@ -1,14 +1,15 @@ define([ "../core", + "../core/access", "./support" -], function( jQuery, support ) { +], function( jQuery, access, support ) { var rfocusable = /^(?:input|select|textarea|button|object)$/i, rclickable = /^(?:a|area)$/i; jQuery.fn.extend({ prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + return access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { |