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: 423e5c58bb451a534e8a15adbea440759a39a001 (plain)
1
2
3
4
5
6
7
8
export const triggerDOMEvent = type => {
  window.document.dispatchEvent(
    new Event(type, {
      bubbles: true,
      cancelable: true,
    }),
  );
};