Skip to content

Commit 7e4f88e

Browse files
committed
Merge branch '6897' of http://github.com/SlexAxton/jquery into SlexAxton-6897
2 parents 09022e0 + 086822e commit 7e4f88e

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

src/attributes.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ var rclass = /[\n\t]/g,
99
rclickable = /^a(?:rea)?$/i,
1010
rradiocheck = /^(?:radio|checkbox)$/i;
1111

12+
jQuery.props = {
13+
"for": "htmlFor",
14+
"class": "className",
15+
readonly: "readOnly",
16+
maxlength: "maxLength",
17+
cellspacing: "cellSpacing",
18+
rowspan: "rowSpan",
19+
colspan: "colSpan",
20+
tabindex: "tabIndex",
21+
usemap: "useMap",
22+
frameborder: "frameBorder"
23+
};
24+
1225
jQuery.fn.extend({
1326
attr: function( name, value ) {
1427
return jQuery.access( this, name, value, true, jQuery.attr );

src/support.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -193,18 +193,4 @@
193193
// release memory in IE
194194
root = script = div = all = a = null;
195195
})();
196-
197-
jQuery.props = {
198-
"for": "htmlFor",
199-
"class": "className",
200-
readonly: "readOnly",
201-
maxlength: "maxLength",
202-
cellspacing: "cellSpacing",
203-
rowspan: "rowSpan",
204-
colspan: "colSpan",
205-
tabindex: "tabIndex",
206-
usemap: "useMap",
207-
frameborder: "frameBorder"
208-
};
209-
210196
})( jQuery );

0 commit comments

Comments
 (0)