8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
|
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
|
||
|
});
|