Benutzer:Totto/common.js: Unterschied zwischen den Versionen
Benutzer:Totto/common.js (Quelltext anzeigen)
Version vom 1. Februar 2021, 17:59 Uhr
, 1. Februar 2021((e)=> {e.doIt})
Totto (Diskussion | Beiträge) K (Irrelevant?!?) |
Totto (Diskussion | Beiträge) K (((e)=> {e.doIt})) |
||
Zeile 43:
var num= hotkey.toUpperCase().charCodeAt(0);
document.addEventListener("keydown",( (event) => { const key = event.keyCode; if(key==num){ window[function_to_call](); } } ) );
}
Zeile 49:
function addHotkeyF(hotkey,function_to_call){
var num= hotkey.toUpperCase().charCodeAt(0);
document.addEventListener("keydown",( (event) => { const key = event.keyCode; if(key==num){ function_to_call(); } } ) );
}
|