gitlab-org--gitlab-foss/app/assets/javascripts/sidebar/sidebar_bundle.js

25 lines
803 B
JavaScript
Raw Normal View History

import Vue from 'vue';
import sidebarTimeTracking from './components/time_tracking/sidebar_time_tracking';
import sidebarAssignees from './components/assignees/sidebar_assignees';
import Mediator from './sidebar_mediator';
2017-05-05 18:23:31 +00:00
function domContentLoaded() {
const mediator = new Mediator(gl.sidebarOptions);
mediator.fetch();
const sidebarAssigneesEl = document.querySelector('#js-vue-sidebar-assignees');
// Only create the sidebarAssignees vue app if it is found in the DOM
// We currently do not use sidebarAssignees for the MR page
if (sidebarAssigneesEl) {
new Vue(sidebarAssignees).$mount(sidebarAssigneesEl);
}
new Vue(sidebarTimeTracking).$mount('#issuable-time-tracker');
2017-05-05 18:23:31 +00:00
}
2017-05-05 18:23:31 +00:00
document.addEventListener('DOMContentLoaded', domContentLoaded);
export default domContentLoaded;