Browse Source

Fixes #2818, action: hide now calls onChange #2818

pull/2414/merge
Jack Lukic 9 years ago
parent
commit
341bf72929
2 changed files with 2 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/modules/dropdown.js

1
RELEASE-NOTES.md

@ -35,6 +35,7 @@
- **Container** - Fix issue with `fluid container` being `100% + gutter` at mobile resolution (causing overflow)
- **Dropdown** - Remove use of `trim` which causes issues IE 11 and below #2806
- **Dropdown** - Fixes issues with setting "" (empty quote) values when `placeholder: false` is used. Fixes issues with using `clear` and `restore defaults` without placeholders. #2637
- **Dropdown** - Fixed issue where `onChange` would not fire when using `action: 'hide'`. #2818
- **Embed** - Remove accidental `console.log` statements in js #2760
- **Form / Input** - Fixes `::placeholder` text color for `ui error input`, modifies form error placeholder color to distinguish from form value error color #2786
- **Form** - Date input and other special input in chrome now are the same height as normal input (adds custom vendor shadow dom styling) #2704

2
src/definitions/modules/dropdown.js

@ -1361,7 +1361,7 @@ $.fn.dropdown = function(parameters) {
module.hideAndClear();
},
hide: function() {
hide: function(text, value) {
module.set.value(value);
module.hideAndClear();
}

Loading…
Cancel
Save