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

dom_events_helper.js « helpers « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 139e0813397e4b1f8543fc474e01f11c310c38f6 (plain)
1
2
3
4
5
6
7
8
9
// eslint-disable-next-line import/prefer-default-export
export const triggerDOMEvent = type => {
  window.document.dispatchEvent(
    new Event(type, {
      bubbles: true,
      cancelable: true,
    }),
  );
};