From 0a436768c64fef0e82612e207250e3f03e30861d Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 17 Feb 2015 15:47:46 -0500 Subject: [PATCH] Comment --- RELEASE-NOTES.md | 1 + src/definitions/behaviors/form.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 6bb8e9939..1e2f4ec33 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -37,6 +37,7 @@ - **Dropdown** - Added new dropdown setting, `forceSelection` which forces `search selection` to a selected value on blur. Defaults to `true`. - **Flag** - Updated Burma/Myanmar flag to current flag (was pre-2010 flag) - **Form** - Input rules now apply to `input[type="time"]` +- **Form Validation** - `get values`, `set values` now support multiple select e.g. `field[]` - **Form Validation** - Dropdown and checkbox will now validate after interaction with `on: 'blur'` - **Headers** - Headers can now contain images alongside text, added examples to docs - **Icon** - Added woff2 icon files for supported browsers (20% file-size decrease) **Thanks FontAwesome** diff --git a/src/definitions/behaviors/form.js b/src/definitions/behaviors/form.js index b1fa1824e..06fdfca3c 100644 --- a/src/definitions/behaviors/form.js +++ b/src/definitions/behaviors/form.js @@ -562,7 +562,7 @@ $.fn.form = function(fields, parameters) { ; if(fieldExists) { if(isMultiple && isCheckbox) { - module.verbose('Selecting multiple select', value, $field); + module.verbose('Selecting multiple', value, $field); $element.checkbox('uncheck'); $.each(value, function(index, value) { $multipleField = $field.filter('[value="' + value + '"]');