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/utils/keyboard.js

11 lines
263 B
JavaScript

// @flow
const isMac = window.navigator.platform === "MacIntel";
export const metaDisplay = isMac ? "⌘" : "Ctrl";
export const meta = isMac ? "cmd" : "ctrl";
export function isMetaKey(event: KeyboardEvent) {
return isMac ? event.metaKey : event.ctrlKey;
}