diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 6a51c6d60..f656b4673 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -94,6 +94,7 @@ - **Dropdown** - Dropdowns with `transition: none` now work correctly. - **Dropdown** - Fixed issue with `search selection` not changing text when reselecting same value from list - **Dropdown** - Dropdown `menu` now use same font size as dropdown +- **Dropdown** - Fixed behaviors called on `` change - **Grid** - Fix `doubling row` not working correctly inside a different `doubling grid` (css spec issue) diff --git a/src/definitions/modules/dropdown.js b/src/definitions/modules/dropdown.js index 95d4e6109..fd9783ef4 100644 --- a/src/definitions/modules/dropdown.js +++ b/src/definitions/modules/dropdown.js @@ -245,6 +245,11 @@ $.fn.dropdown = function(parameters) { $firstModules = $allModules.slice(0, index); $lastModules = $allModules.slice(index + 1); $allModules = $firstModules.add($module).add($lastModules); + // invoke method in context of current instance + if(methodInvoked) { + instance = module; + module.invoke(query); + } } },