@@ -25,45 +25,43 @@ function classesToArray( value ) {
25
25
26
26
jQuery . fn . extend ( {
27
27
addClass : function ( value ) {
28
- var classes , elem , cur , curValue , clazz , j , finalValue ,
29
- i = 0 ;
28
+ var classNames , cur , curValue , className , i , finalValue ;
30
29
31
30
if ( isFunction ( value ) ) {
32
31
return this . each ( function ( j ) {
33
32
jQuery ( this ) . addClass ( value . call ( this , j , getClass ( this ) ) ) ;
34
33
} ) ;
35
34
}
36
35
37
- classes = classesToArray ( value ) ;
36
+ classNames = classesToArray ( value ) ;
38
37
39
- if ( classes . length ) {
40
- while ( ( elem = this [ i ++ ] ) ) {
41
- curValue = getClass ( elem ) ;
42
- cur = elem . nodeType === 1 && ( " " + stripAndCollapse ( curValue ) + " " ) ;
38
+ if ( classNames . length ) {
39
+ return this . each ( function ( ) {
40
+ curValue = getClass ( this ) ;
41
+ cur = this . nodeType === 1 && ( " " + stripAndCollapse ( curValue ) + " " ) ;
43
42
44
43
if ( cur ) {
45
- j = 0 ;
46
- while ( ( clazz = classes [ j ++ ] ) ) {
47
- if ( cur . indexOf ( " " + clazz + " " ) < 0 ) {
48
- cur += clazz + " " ;
44
+ for ( i = 0 ; i < classNames . length ; i ++ ) {
45
+ className = classNames [ i ] ;
46
+ if ( cur . indexOf ( " " + className + " " ) < 0 ) {
47
+ cur += className + " " ;
49
48
}
50
49
}
51
50
52
51
// Only assign if different to avoid unneeded rendering.
53
52
finalValue = stripAndCollapse ( cur ) ;
54
53
if ( curValue !== finalValue ) {
55
- elem . setAttribute ( "class" , finalValue ) ;
54
+ this . setAttribute ( "class" , finalValue ) ;
56
55
}
57
56
}
58
- }
57
+ } ) ;
59
58
}
60
59
61
60
return this ;
62
61
} ,
63
62
64
63
removeClass : function ( value ) {
65
- var classes , elem , cur , curValue , clazz , j , finalValue ,
66
- i = 0 ;
64
+ var classNames , cur , curValue , className , i , finalValue ;
67
65
68
66
if ( isFunction ( value ) ) {
69
67
return this . each ( function ( j ) {
@@ -75,45 +73,42 @@ jQuery.fn.extend( {
75
73
return this . attr ( "class" , "" ) ;
76
74
}
77
75
78
- classes = classesToArray ( value ) ;
76
+ classNames = classesToArray ( value ) ;
79
77
80
- if ( classes . length ) {
81
- while ( ( elem = this [ i ++ ] ) ) {
82
- curValue = getClass ( elem ) ;
78
+ if ( classNames . length ) {
79
+ return this . each ( function ( ) {
80
+ curValue = getClass ( this ) ;
83
81
84
82
// This expression is here for better compressibility (see addClass)
85
- cur = elem . nodeType === 1 && ( " " + stripAndCollapse ( curValue ) + " " ) ;
83
+ cur = this . nodeType === 1 && ( " " + stripAndCollapse ( curValue ) + " " ) ;
86
84
87
85
if ( cur ) {
88
- j = 0 ;
89
- while ( ( clazz = classes [ j ++ ] ) ) {
86
+ for ( i = 0 ; i < classNames . length ; i ++ ) {
87
+ className = classNames [ i ] ;
90
88
91
89
// Remove *all* instances
92
- while ( cur . indexOf ( " " + clazz + " " ) > - 1 ) {
93
- cur = cur . replace ( " " + clazz + " " , " " ) ;
90
+ while ( cur . indexOf ( " " + className + " " ) > - 1 ) {
91
+ cur = cur . replace ( " " + className + " " , " " ) ;
94
92
}
95
93
}
96
94
97
95
// Only assign if different to avoid unneeded rendering.
98
96
finalValue = stripAndCollapse ( cur ) ;
99
97
if ( curValue !== finalValue ) {
100
- elem . setAttribute ( "class" , finalValue ) ;
98
+ this . setAttribute ( "class" , finalValue ) ;
101
99
}
102
100
}
103
- }
101
+ } ) ;
104
102
}
105
103
106
104
return this ;
107
105
} ,
108
106
109
107
toggleClass : function ( value , stateVal ) {
110
- var type = typeof value ,
108
+ var classNames , className , i , self ,
109
+ type = typeof value ,
111
110
isValidValue = type === "string" || Array . isArray ( value ) ;
112
111
113
- if ( typeof stateVal === "boolean" && isValidValue ) {
114
- return stateVal ? this . addClass ( value ) : this . removeClass ( value ) ;
115
- }
116
-
117
112
if ( isFunction ( value ) ) {
118
113
return this . each ( function ( i ) {
119
114
jQuery ( this ) . toggleClass (
@@ -123,17 +118,20 @@ jQuery.fn.extend( {
123
118
} ) ;
124
119
}
125
120
126
- return this . each ( function ( ) {
127
- var className , i , self , classNames ;
121
+ if ( typeof stateVal === "boolean" && isValidValue ) {
122
+ return stateVal ? this . addClass ( value ) : this . removeClass ( value ) ;
123
+ }
128
124
125
+ classNames = classesToArray ( value ) ;
126
+
127
+ return this . each ( function ( ) {
129
128
if ( isValidValue ) {
130
129
131
130
// Toggle individual class names
132
- i = 0 ;
133
131
self = jQuery ( this ) ;
134
- classNames = classesToArray ( value ) ;
135
132
136
- while ( ( className = classNames [ i ++ ] ) ) {
133
+ for ( i = 0 ; i < classNames . length ; i ++ ) {
134
+ className = classNames [ i ] ;
137
135
138
136
// Check each className given, space separated list
139
137
if ( self . hasClass ( className ) ) {
0 commit comments