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

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

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