@@ -79,7 +79,7 @@ export default class Validator {
79
79
}
80
80
81
81
registerEvents ( ) {
82
- let attrs = this . _dir . el . attributes
82
+ const attrs = this . _dir . el . attributes
83
83
for ( let i = 0 , l = attrs . length ; i < l ; i ++ ) {
84
84
let event = attrs [ i ] . name
85
85
if ( eventRE . test ( event ) ) {
@@ -152,7 +152,7 @@ export default class Validator {
152
152
addGroupValidation ( group , field ) {
153
153
const indexOf = util . Vue . util . indexOf
154
154
155
- let validation = this . _validations [ field ]
155
+ const validation = this . _validations [ field ]
156
156
|| this . _checkboxValidations [ field ] . validation
157
157
|| this . _radioValidations [ field ] . validation
158
158
let validations = this . _groupValidations [ group ]
@@ -161,7 +161,7 @@ export default class Validator {
161
161
}
162
162
163
163
removeGroupValidation ( group , field ) {
164
- let validation = this . _validations [ field ]
164
+ const validation = this . _validations [ field ]
165
165
|| this . _checkboxValidations [ field ] . validation
166
166
|| this . _radioValidations [ field ] . validation
167
167
let validations = this . _groupValidations [ group ]
@@ -192,8 +192,8 @@ export default class Validator {
192
192
}
193
193
194
194
waitFor ( cb ) {
195
+ const method = '$activateValidator'
195
196
let vm = this . _dir . vm
196
- let method = '$activateValidator'
197
197
198
198
vm [ method ] = ( ) => {
199
199
cb ( )
@@ -204,7 +204,7 @@ export default class Validator {
204
204
_validate ( field , touched = false , noopable = false , cb = null ) {
205
205
const scope = this . _scope
206
206
207
- let validation = this . _getValidationFrom ( field )
207
+ const validation = this . _getValidationFrom ( field )
208
208
if ( validation ) {
209
209
validation . willUpdateFlags ( touched )
210
210
validation . validate ( ( results ) => {
@@ -366,7 +366,7 @@ export default class Validator {
366
366
}
367
367
368
368
_fireEvent ( type , ...args ) {
369
- let handler = this . _events [ this . _getEventName ( type ) ]
369
+ const handler = this . _events [ this . _getEventName ( type ) ]
370
370
handler && handler . apply ( null , args )
371
371
}
372
372
0 commit comments