UNPKG

@atlaskit/editor-plugin-table

Version:

Table plugin for the @atlaskit/editor

9 lines 290 B
import { getBrowserInfo } from '@atlaskit/editor-common/browser'; export const getDragBehaviour = ({ altKey, ctrlKey }) => { const browser = getBrowserInfo(); const isCloneModifierKeyPressed = browser.mac ? altKey : ctrlKey; return isCloneModifierKeyPressed ? 'clone' : 'move'; };