summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/init_issuable_sidebar.js
blob: 6f476f96f72ba63d7166dc5d9e369f4dc225a5c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* eslint-disable no-new */
/* global MilestoneSelect */
/* global LabelsSelect */
import IssuableContext from './issuable_context';
/* global Sidebar */

import DueDateSelectors from './due_date_select';

export default () => {
  const sidebarOptions = JSON.parse(document.querySelector('.js-sidebar-options').innerHTML);

  new MilestoneSelect({
    full_path: sidebarOptions.fullPath,
  });
  new LabelsSelect();
  new IssuableContext(sidebarOptions.currentUser);
  gl.Subscription.bindAll('.subscription');
  new DueDateSelectors();
  window.sidebar = new Sidebar();
};