summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/profiles/index/index.js
blob: 586b3be86612d4bd9e0341ee87fd9e68cf6506dc (plain)
1
2
3
4
5
6
7
import notificationsDropdown from '../../../notifications_dropdown';
import NotificationsForm from '../../../notifications_form';

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