summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/editor/constants.js
blob: d6f87872bdeafb189e2be50d7f7507fc72c5d004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { __ } from '~/locale';

export const EDITOR_LITE_INSTANCE_ERROR_NO_EL = __(
  '"el" parameter is required for createInstance()',
);

export const URI_PREFIX = 'gitlab';
export const CONTENT_UPDATE_DEBOUNCE = 250;

export const ERROR_INSTANCE_REQUIRED_FOR_EXTENSION = __(
  'Editor Lite instance is required to set up an extension.',
);