From 7a93ac22cbfe3f45b96612620973ffee8173d12c Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Tue, 11 Aug 2015 17:11:01 -0400 Subject: [PATCH] Finally fixes #2058, forceSelection shouldnt occur on empty query. minor formatting --- RELEASE-NOTES.md | 1 + src/definitions/modules/dropdown.js | 23 +++++++++++++++-------- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 8e239df86d..11fcde948a 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -33,6 +33,7 @@ - **Modal** - Increased `close` specificity, modal will now only close on `> .close` #2736 - **Transition** - Transition callbacks now all have the correct `this` set. #2758 - **Dropdown** - Fix `left menu` inside `ui menu` appearing horizontally #2778 +- **Dropdown** - `forceSelection` no longer sets current value in search selection when current query is blank #2058 **Additional Bugs** - **Build Tools** - Fixes issue on `win` platform where packaged theme would not correctly update when using watch due to regExp not matching windows path separators. diff --git a/src/definitions/modules/dropdown.js b/src/definitions/modules/dropdown.js index 66f2466c83..b9f43e35d7 100644 --- a/src/definitions/modules/dropdown.js +++ b/src/definitions/modules/dropdown.js @@ -674,7 +674,7 @@ $.fn.dropdown = function(parameters) { beginsWithRegExp = new RegExp('^' + escapedTerm, 'igm') ; // avoid loop if we're matching nothing - if(searchTerm === '') { + if( !module.has.query() ) { $results = $item; } else { @@ -771,7 +771,7 @@ $.fn.dropdown = function(parameters) { : $activeItem, hasSelected = ($selectedItem.size() > 0) ; - if(hasSelected) { + if( hasSelected && module.has.query() ) { module.debug('Forcing partial selection to selected item', $selectedItem); module.event.item.click.call($selectedItem); } @@ -909,7 +909,9 @@ $.fn.dropdown = function(parameters) { touch: function(event) { module.determine.eventOnElement(event, function() { if(event.type == 'touchstart') { - module.timer = setTimeout(module.hide, settings.delay.touch); + module.timer = setTimeout(function() { + module.hide(); + }, settings.delay.touch); } else if(event.type == 'touchmove') { clearTimeout(module.timer); @@ -959,15 +961,17 @@ $.fn.dropdown = function(parameters) { }, settings.delay.hide); } }, + touchend: function() { + }, click: function (event) { var - $choice = $(this), - $target = (event) + $choice = $(this), + $target = (event) ? $(event.target) : $(''), - $subMenu = $choice.find(selector.menu), - text = module.get.choiceText($choice), - value = module.get.choiceValue($choice, text), + $subMenu = $choice.find(selector.menu), + text = module.get.choiceText($choice), + value = module.get.choiceValue($choice, text), hasSubMenu = ($subMenu.length > 0), isBubbledEvent = ($subMenu.find($target).length > 0) ; @@ -2656,6 +2660,9 @@ $.fn.dropdown = function(parameters) { allResultsFiltered: function() { return ($item.filter(selector.unselectable).length === $item.length); }, + query: function() { + return (module.get.query() != ''); + }, value: function(value) { var values = module.get.values(),