Allow tab to work normally (#12)
This commit is contained in:
@@ -70,7 +70,9 @@ function view(ctl, params) {
|
|||||||
result.doAction("fill");
|
result.doAction("fill");
|
||||||
},
|
},
|
||||||
onkeydown: function(e) {
|
onkeydown: function(e) {
|
||||||
e.preventDefault();
|
if (e.code != "Tab") {
|
||||||
|
e.preventDefault();
|
||||||
|
}
|
||||||
switch (e.code) {
|
switch (e.code) {
|
||||||
case "ArrowDown":
|
case "ArrowDown":
|
||||||
if (e.target.nextSibling) {
|
if (e.target.nextSibling) {
|
||||||
|
Reference in New Issue
Block a user