Browse Source

Allow first letter selection without selection dropdown

pull/3704/head
Jack Lukic 9 years ago
parent
commit
989c8d582a
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/dropdown.js

2
src/definitions/modules/dropdown.js

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

Loading…
Cancel
Save