gitlab-org--gitlab-foss/app/assets/javascripts/pages/profiles/notifications/show/index.js
2018-03-16 16:51:03 +00:00

7 lines
279 B
JavaScript

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