-
-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right command does not fires on macOS #92
Comments
@KirillSuhodolov https://codepen.io/jaywcjlove/pen/xorRvW hotkeys('ctrl+r, command+r', function(event,handler) {
event.preventDefault();
console.log('handle', handler.key, event)
}); |
I can confirm that. (Right) command+r does not work for me either. |
example not working too |
@KirillSuhodolov I tested no problem. |
This does not work for me either - https://jsfiddle.net/vikasshashidhar/qcxd53m1/1/. The right option key works though. |
@jaywcjlove Any updates on this please? |
- hotkeys("option+k,cmd+k", function(event, handler) {
+ hotkeys("option+k,command+k", function(event, handler) {
console.log('handler:', handler.shortcut);
}); @VikasShashidhar I tested no problem, I don't know if it is a browser version issue. |
@jaywcjlove It's weird! I am able to make this work on Firefox but not on Chrome or Safari. What version of Chrome are you trying this on? Also, it's only the right |
@VikasShashidhar Google Chrome v75.0.3770.142 |
@jaywcjlove I am using the exact same version and running into this issue. I am not sure how else I can help you repro this. Any suggestions? |
@VikasShashidhar Can I run your example? |
Of course. Please go ahead. You can use the fiddle that I shared to do that. |
Had the same issue, moved line 193-195 in main.js to line 187. This fixed it for me, not sure if it's breaking something else though. |
@felixreichle There is no problem with the code moving up. |
@KirillSuhodolov @VikasShashidhar @felixreichle |
from example
left command fires, but right not, on macOS
The text was updated successfully, but these errors were encountered: