meteor-autoform-materialize
Version:
Materialize theme for Autoform
13 lines (9 loc) • 310 B
JavaScript
/*jshint esversion: 6 */
export const attsToggleInvalidClass = function() {
var atts = _.clone(this.atts);
var context = AutoForm.getFormSchema().namedContext(AutoForm.getFormId());
if (context.keyIsInvalid(atts.name)) {
atts = AutoForm.Utility.addClass(atts, 'invalid');
}
return atts;
};