Browse Source

Fix issue where selection was borked for search inside menu

pull/4164/head
Jack Lukic 8 years ago
parent
commit
4b6595dd99
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/dropdown.js

2
src/definitions/modules/dropdown.js

@ -1455,7 +1455,7 @@ $.fn.dropdown = function(parameters) {
}
}
else {
if( !module.is.search() ) {
if( !module.has.search() ) {
module.set.selectedLetter( String.fromCharCode(pressedKey) );
}
}

Loading…
Cancel
Save