debian-mirror-gitlab/app/assets/javascripts/pages/projects/index.js

11 lines
387 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import Project from './project';
2018-12-05 23:21:45 +05:30
import ShortcutsNavigation from '../../behaviors/shortcuts/shortcuts_navigation';
2019-12-26 22:10:19 +05:30
import initCreateCluster from '~/create_cluster/init_create_cluster';
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
document.addEventListener('DOMContentLoaded', () => {
2019-12-26 22:10:19 +05:30
initCreateCluster(document, gon);
2018-11-08 19:23:39 +05:30
2018-03-17 18:26:18 +05:30
new Project(); // eslint-disable-line no-new
new ShortcutsNavigation(); // eslint-disable-line no-new
2018-03-27 19:54:05 +05:30
});