0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-03-13 13:29:25 +01:00

don't lookup typeahead when shift alt or ctrl are pushed

This commit is contained in:
Jacob Thornton 2012-10-17 23:39:41 -07:00
parent 45046544a6
commit ba2a99e7c4
4 changed files with 10 additions and 1 deletions

View File

@ -230,6 +230,9 @@
switch(e.keyCode) {
case 40: // down arrow
case 38: // up arrow
case 16: // shift
case 17: // ctrl
case 18: // alt
break
case 9: // tab

View File

@ -1839,6 +1839,9 @@
switch(e.keyCode) {
case 40: // down arrow
case 38: // up arrow
case 16: // shift
case 17: // ctrl
case 18: // alt
break
case 9: // tab

File diff suppressed because one or more lines are too long

View File

@ -230,6 +230,9 @@
switch(e.keyCode) {
case 40: // down arrow
case 38: // up arrow
case 16: // shift
case 17: // ctrl
case 18: // alt
break
case 9: // tab