Hello!
Is it possible to assign an event to any button on the keyboard in Miro? I am trying to use the following code:
alert("1");
document.addEventListener('keydown', funсKey);
function funсKey() {
alert("2");
}
The first alert displays "1", but the second one does not work when you press the button on the keyboard. I tried to do this by replacing "keydown" with "click", but it didn't work either.