|
|
|
|
|
by lobster_johnson
3465 days ago
|
|
I believe I reported this once, but it's still there: You're hijacking alt-cmd-left/right, which I use for switching tabs in Safari. Your arrow-key event handler needs to have a guard: !(event.ctrlKey || event.shiftKey ||
event.altKey || event.metaKey)
(Thanks for writing great documentation, though.) |
|