Browse Source

fixes dropdown bug #256

pull/258/head
jlukic 11 years ago
parent
commit
f2a8feab1b
2 changed files with 5 additions and 1 deletions
  1. 5
      RELEASE NOTES.md
  2. 1
      src/modules/dropdown.js

5
RELEASE NOTES.md

@ -1,5 +1,10 @@
## RELEASE NOTES ## RELEASE NOTES
### Version 0.6.4 - Oct 16, 2013
**Fixes**
- Fixes issue where browser default action, like link clicking, was prevented on dropdown item click
### Version 0.6.3 - Oct 15, 2013 ### Version 0.6.3 - Oct 15, 2013
**Deprecation** **Deprecation**

1
src/modules/dropdown.js

@ -222,7 +222,6 @@ $.fn.dropdown = function(parameters) {
if( $choice.find(selector.menu).size() === 0 ) { if( $choice.find(selector.menu).size() === 0 ) {
module.determine.selectAction(text, value); module.determine.selectAction(text, value);
$.proxy(settings.onChange, element)(value, text); $.proxy(settings.onChange, element)(value, text);
event.preventDefault();
} }
} }

Loading…
Cancel
Save