Allow out-of-focus typing on touch devices

This commit is contained in:
Pavel Djundik 2018-05-03 15:51:40 +03:00
parent 5aafb38624
commit 55c1293b4c

View File

@ -247,7 +247,6 @@ const ignoredKeys = {
224: true, // Meta
};
if (!("ontouchstart" in window || navigator.maxTouchPoints > 0)) {
$(document.body).on("keydown", (e) => {
// Ignore if target isn't body (e.g. focused into input)
// Ignore any key that uses alt modifier
@ -270,4 +269,3 @@ if (!("ontouchstart" in window || navigator.maxTouchPoints > 0)) {
input.trigger("focus");
});
}