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

8 lines
273 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import NotificationsForm from '../../../notifications_form';
import notificationsDropdown from '../../../notifications_dropdown';
2018-03-27 19:54:05 +05:30
document.addEventListener('DOMContentLoaded', () => {
2018-03-17 18:26:18 +05:30
new NotificationsForm(); // eslint-disable-line no-new
notificationsDropdown();
2018-03-27 19:54:05 +05:30
});