validateAll...

This commit is contained in:
elclanrs 2014-06-10 08:05:36 -04:00
parent b4bf793e86
commit d0fab2f3fd
2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -204,8 +204,8 @@ module.exports = {
return valid;
},
_validateAll: function(handleStyle, handleError) {
_validateAll: function(handleError, handleStyle) {
var self = this;
this.$inputs.each(function(){ self._validate(this, handleStyle, handleError); });
this.$inputs.each(function(){ self._validate(this, handleError, handleStyle); });
}
};