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: 9bd430f4f116e36953e3cd673c5d42c32d67a680 (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();
});