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

index.js « show « notifications « profiles « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 639f5deb72cef17c314b889616fc6610e28d8439 (plain)
1
2
3
4
5
6
7
8
9
import initNotificationsDropdown from '~/notifications';
import notificationsDropdown from '../../../../notifications_dropdown';
import NotificationsForm from '../../../../notifications_form';

document.addEventListener('DOMContentLoaded', () => {
  new NotificationsForm(); // eslint-disable-line no-new
  notificationsDropdown();
  initNotificationsDropdown();
});