This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/app/components/Editor/utils.js
Jori Lallo 97268314fe Map keyboard shortcuts on windows (#526)
* Map keyboard shortcuts on windows

* Fixed also saving commands

* Fix keyboard shortcut for keyboard shortcuts

* Fixed guide

* Cmd -> Mod
2018-01-28 17:57:45 -08:00

12 lines
296 B
JavaScript

// @flow
/**
* Detect Cmd or Ctrl by platform for keyboard shortcuts
*/
export function isModKey(event: SyntheticKeyboardEvent) {
const isMac =
typeof window !== 'undefined' &&
/Mac|iPod|iPhone|iPad/.test(window.navigator.platform);
return isMac ? event.metaKey : event.ctrlKey;
}