debian-mirror-gitlab/app/assets/javascripts/pages/profiles/notifications/show/index.js

10 lines
367 B
JavaScript
Raw Normal View History

2021-03-11 19:13:27 +05:30
import initNotificationsDropdown from '~/notifications';
2018-03-27 19:54:05 +05:30
import notificationsDropdown from '../../../../notifications_dropdown';
2021-03-11 19:13:27 +05:30
import NotificationsForm from '../../../../notifications_form';
2018-03-27 19:54:05 +05:30
document.addEventListener('DOMContentLoaded', () => {
new NotificationsForm(); // eslint-disable-line no-new
notificationsDropdown();
2021-03-11 19:13:27 +05:30
initNotificationsDropdown();
2018-03-27 19:54:05 +05:30
});