File tree 1 file changed +18
-17
lines changed
1 file changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -64,23 +64,7 @@ jQuery.extend( {
64
64
return ret == null ? undefined : ret ;
65
65
} ,
66
66
67
- attrHooks : {
68
- type : {
69
- set : function ( elem , value ) {
70
-
71
- // Support: IE <=11+
72
- // An input loses its value after becoming a radio
73
- if ( isIE && value === "radio" && nodeName ( elem , "input" ) ) {
74
- var val = elem . value ;
75
- elem . setAttribute ( "type" , value ) ;
76
- if ( val ) {
77
- elem . value = val ;
78
- }
79
- return value ;
80
- }
81
- }
82
- }
83
- } ,
67
+ attrHooks : { } ,
84
68
85
69
removeAttr : function ( elem , value ) {
86
70
var name ,
@@ -98,6 +82,23 @@ jQuery.extend( {
98
82
}
99
83
} ) ;
100
84
85
+ // Support: IE <=11+
86
+ // An input loses its value after becoming a radio
87
+ if ( isIE ) {
88
+ jQuery . attrHooks . type = {
89
+ set : function ( elem , value ) {
90
+ if ( value === "radio" && nodeName ( elem , "input" ) ) {
91
+ var val = elem . value ;
92
+ elem . setAttribute ( "type" , value ) ;
93
+ if ( val ) {
94
+ elem . value = val ;
95
+ }
96
+ return value ;
97
+ }
98
+ }
99
+ } ;
100
+ }
101
+
101
102
jQuery . each ( jQuery . expr . match . bool . source . match ( / \w + / g ) , function ( _i , name ) {
102
103
jQuery . attrHooks [ name ] = {
103
104
get : function ( elem ) {
You can’t perform that action at this time.
0 commit comments