f0bm #75

Open
schrumpel wants to merge 49 commits from schrumpel/f0bm:f0bm into master
Showing only changes of commit 23a62d3803 - Show all commits

View File

@ -72,7 +72,7 @@ window.requestAnimFrame = (function(){
" ": clickOnElementBinding("#f0ck-image")
};
document.addEventListener("keydown", e => {
if(e.key in keybindings && e.target.tagName !== "INPUT") {
if(e.key in keybindings && e.target.tagName !== "INPUT" && e.target.tagName !== "TEXTAREA") {
if(e.shiftKey || e.ctrlKey || e.metaKey || e.altKey)
return;
e.preventDefault();