Browse Source

#2084 setup reference does not query behavior after adjusting selectors

pull/2092/head
jlukic 10 years ago
parent
commit
b063a39896
2 changed files with 6 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 5
      src/definitions/modules/dropdown.js

1
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 `<select>` after initialization not being correctly applied to `ui dropdown`
- **Form** - Form sizes and input sizes now inherit from `site.variables`
- **Form Validation** - Form validation now validates correctly on `<select>` change
- **Grid** - Fix `doubling row` not working correctly inside a different `doubling grid` (css spec issue)

5
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);
}
}
},

Loading…
Cancel
Save