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

helpers.js « issue_show « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ca6a22929dbe0b839a6cca5c226370feb6456f1 (plain)
1
2
3
4
5
6
7
8
9
export const keyboardDownEvent = (code, metaKey = false, ctrlKey = false) => {
  const e = new CustomEvent('keydown');

  e.keyCode = code;
  e.metaKey = metaKey;
  e.ctrlKey = ctrlKey;

  return e;
};