From b691d2f0588c4f158b80f2dc3cfda64e266c9e50 Mon Sep 17 00:00:00 2001 From: jlukic Date: Fri, 17 Apr 2015 19:07:41 -0400 Subject: [PATCH] Remove debug and rlsnotes #2133 --- RELEASE-NOTES.md | 1 + src/definitions/behaviors/form.js | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 46ba4a7ab..e3ee721fd 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -40,6 +40,7 @@ - **Form** - Added placeholder color rules for IE, `ms-input-placeholder` - **Form** - Fix `errored field` dropdown keyboard selection color - **Form Validation** - `data-validate` now takes precedence over other validation matching schemes like `name` or `id` +- **Form Validation** - New rules for matching against custom regular expressions - **Form Validation** - Form validation now has `minCount`, `maxCount`, and `exactCount` for validating multiple selections - **Grid** - `celled grid` now removes internal cells on mobile and tablet when used with `doubling` grid responsive variation - **Grid** - `equal width` now works without `row` wrappers diff --git a/src/definitions/behaviors/form.js b/src/definitions/behaviors/form.js index 92636abd2..08794b13d 100644 --- a/src/definitions/behaviors/form.js +++ b/src/definitions/behaviors/form.js @@ -1181,7 +1181,6 @@ $.fn.form.settings = { : '' ; } - console.log(regExpParts, regExp, flags); return value.match( new RegExp(regExp, flags) ); },