debian-mirror-gitlab/app/assets/javascripts/init_notes.js

11 lines
416 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import Notes from './notes';
2017-09-10 17:25:29 +05:30
export default () => {
const dataEl = document.querySelector('.js-notes-data');
2018-12-13 13:39:08 +05:30
const { notesUrl, notesIds, now, diffView, enableGFM } = JSON.parse(dataEl.innerHTML);
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
// 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
2018-11-08 19:23:39 +05:30
Notes.initialize(notesUrl, notesIds, now, diffView, enableGFM);
2017-09-10 17:25:29 +05:30
};