summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/issues/show/index.js
blob: ce74a6de11f6b4a802ecc7919e918cb663d90456 (plain)
1
2
3
4
5
6
7
8
9
import initSidebarBundle from '~/sidebar/sidebar_bundle';
import initShow from '../show';

document.addEventListener('DOMContentLoaded', () => {
  initShow();
  if (gon.features && !gon.features.vueIssuableSidebar) {
    initSidebarBundle();
  }
});