Browse Source

#2175 Form set value should not automatically validate form

pull/2158/merge
jlukic 10 years ago
parent
commit
ec853a6aff
2 changed files with 1 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 1
      src/definitions/behaviors/form.js

1
RELEASE-NOTES.md

@ -142,6 +142,7 @@
- **Card** - Card styles have been adjusted, `link card` now raise to show selection. Colored variations now have shadows.
- **Checkbox** - Toggle now uses `@primaryColor`
- **Dropdown** - Dropdown padding values now resolve to exact pixel values from em
- **Form** - `set value` no longer automatically calls `validate form`
- **Grid** - Small computer `page grid` gutters have been adjusted from 8% to 3% to allow for roomier layouts on small screens.
- **Grid** - `center aligned` no longer centers rows, just text. Use `centered grid` to center a grid column on the page.
- **Header/Table/Divider** - These components now pull border color defaults from `site.variables` instead of using their own values

1
src/definitions/behaviors/form.js

@ -661,7 +661,6 @@ $.fn.form = function(parameters) {
}
}
});
module.validate.form();
}
},

Loading…
Cancel
Save