summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/profiles/notifications/show/index.js
blob: cd1512df2dad2ed2a44bf9e8a25a403e4d5f4173 (plain)
1
2
3
4
5
6
7
8
9
import initNotificationsDropdown from '~/notifications';
import NotificationsForm from '../../../../notifications_form';
import notificationsDropdown from '../../../../notifications_dropdown';

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