Browse Source

Remove debug and rlsnotes #2133

pull/2169/head
jlukic 9 years ago
parent
commit
b691d2f058
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

@ -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

1
src/definitions/behaviors/form.js

@ -1181,7 +1181,6 @@ $.fn.form.settings = {
: ''
;
}
console.log(regExpParts, regExp, flags);
return value.match( new RegExp(regExp, flags) );
},

Loading…
Cancel
Save