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.
outline/app/components/Editor/utils.js

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;
}