gitlab-org--gitlab-foss/app/assets/javascripts/pages/profiles/notifications/show/index.js

10 lines
367 B
JavaScript
Raw Normal View History

import NotificationsForm from '../../../../notifications_form';
import notificationsDropdown from '../../../../notifications_dropdown';
import initNotificationsDropdown from '~/notifications';
document.addEventListener('DOMContentLoaded', () => {
new NotificationsForm(); // eslint-disable-line no-new
notificationsDropdown();
initNotificationsDropdown();
});