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: 2e24a10fa5c6a8290018cd458c5843c045e12231 (plain)
1
2
3
4
5
6
7
import NotificationsForm from '../../../../notifications_form';
import notificationsDropdown from '../../../../notifications_dropdown';

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