Closed garygreen closed 6 years ago
var dominar = new Dominar(form, { full_name: { rules: 'required' } }, { fields: { feedback: false } });
This will apply feedback false to all the fields, except for ones that have it explicitly set.
feedback
Just use dominar.defaults.feedback = false (straight after instantiating the instance)
dominar.defaults.feedback = false
This will apply
feedback
false to all the fields, except for ones that have it explicitly set.