Welcome to mirror list, hosted at ThFree Co, Russian Federation.

init_notes.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 882aedfcc7666766e0302637af871beb4cf4730f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Notes from './notes';

export default () => {
  const dataEl = document.querySelector('.js-notes-data');
  const {
    notesUrl,
    notesIds,
    now,
    diffView,
    autocomplete,
  } = JSON.parse(dataEl.innerHTML);

  // Create a singleton so that we don't need to assign
  // into the window object, we can just access the current isntance with Notes.instance
  Notes.initialize(notesUrl, notesIds, now, diffView, autocomplete);
};