summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/boards/index.js
blob: 3aeeedbb45d9d46af44a75e55ff50d59ff626ee4 (plain)
1
2
3
4
5
6
7
import UsersSelect from '~/users_select';
import ShortcutsNavigation from '~/shortcuts_navigation';

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