From: Alex Sexton Date: Mon, 25 Oct 2010 07:31:19 +0000 (-0500) Subject: Moved jQuery.props to attributes since it was only used in support. Fixes #6897 ... X-Git-Url: http://git.asbjorn.it/?p=jquery.git;a=commitdiff_plain;h=086822e6419c89c33b322bacbbc891148a4b3647 Moved jQuery.props to attributes since it was only used in support. Fixes #6897 - suggestion by dmethvin --- diff --git a/src/attributes.js b/src/attributes.js index 147c353..4393a9f 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -9,6 +9,19 @@ var rclass = /[\n\t]/g, rclickable = /^a(?:rea)?$/i, rradiocheck = /^(?:radio|checkbox)$/i; +jQuery.props = { + "for": "htmlFor", + "class": "className", + readonly: "readOnly", + maxlength: "maxLength", + cellspacing: "cellSpacing", + rowspan: "rowSpan", + colspan: "colSpan", + tabindex: "tabIndex", + usemap: "useMap", + frameborder: "frameBorder" +}; + jQuery.fn.extend({ attr: function( name, value ) { return jQuery.access( this, name, value, true, jQuery.attr ); diff --git a/src/support.js b/src/support.js index b9c10c7..67b41c4 100644 --- a/src/support.js +++ b/src/support.js @@ -193,18 +193,4 @@ // release memory in IE root = script = div = all = a = null; })(); - -jQuery.props = { - "for": "htmlFor", - "class": "className", - readonly: "readOnly", - maxlength: "maxLength", - cellspacing: "cellSpacing", - rowspan: "rowSpan", - colspan: "colSpan", - tabindex: "tabIndex", - usemap: "useMap", - frameborder: "frameBorder" -}; - })( jQuery );