You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to detect the presence of "Ctl/Command" and log the fact
So I use "keyup" and "keydown" - something like this
Mousetrap.bind('mod', function(_this) {
_this.ctrlPressed = false;
}, 'keyup');
But I don't get any events firing - I can't see any documentation clarifying this but I gather just checking for "mod" and nothing else isn't supported/expected?
The text was updated successfully, but these errors were encountered:
I wanted to detect the presence of "Ctl/Command" and log the fact
So I use "keyup" and "keydown" - something like this
Mousetrap.bind('mod', function(_this) {
_this.ctrlPressed = false;
}, 'keyup');
But I don't get any events firing - I can't see any documentation clarifying this but I gather just checking for "mod" and nothing else isn't supported/expected?
The text was updated successfully, but these errors were encountered: