Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 631968ff531d646e9e9cb0a5007468ec7c49f135 (plain)
1
2
3
4
5
6
7
export const getModifierKey = (removeSuffix = false) => {
  // eslint-disable-next-line @gitlab/require-i18n-strings
  const winKey = `Ctrl${removeSuffix ? '' : '+'}`;
  return window.gl?.client?.isMac ? '⌘' : winKey;
};

export const PRELOAD_THROTTLE_TIMEOUT_MS = 4000;