gitlab-org--gitlab-foss/app/assets/javascripts/pages/groups/boards/index.js
2018-09-18 17:26:15 -05:00

9 lines
340 B
JavaScript

import UsersSelect from '~/users_select';
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
import initBoards from '~/boards';
document.addEventListener('DOMContentLoaded', () => {
new UsersSelect(); // eslint-disable-line no-new
new ShortcutsNavigation(); // eslint-disable-line no-new
initBoards();
});