2018-03-17 18:26:18 +05:30
|
|
|
import UsersSelect from '~/users_select';
|
2018-12-05 23:21:45 +05:30
|
|
|
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
|
2018-03-27 19:54:05 +05:30
|
|
|
import initBoards from '~/boards';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
new UsersSelect(); // eslint-disable-line no-new
|
|
|
|
new ShortcutsNavigation(); // eslint-disable-line no-new
|
2018-03-27 19:54:05 +05:30
|
|
|
initBoards();
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|