cerebral-legacy / cerebral-module-forms

Form handling for Cerebral
http://cerebral-website.herokuapp.com/documentation/cerebral-module-forms
MIT License
12 stars 5 forks source link

equalsField #7

Closed edgesoft closed 8 years ago

edgesoft commented 8 years ago

In helpers/rules.js we have this rule.

 equalsField: function (value, form, field) {
    return value == form[field];
  },

Should this be return value === form[field].value?

edgesoft commented 8 years ago

Sorry. had an old repo. This is fixed.