Update map name for default autocomplete config

This commit is contained in:
Kushal Pandya 2018-06-21 17:23:33 +05:30
parent db9fb8a30e
commit b13eef1d67
1 changed files with 2 additions and 2 deletions

View File

@ -7,10 +7,10 @@ export default () => {
notesIds,
now,
diffView,
autocomplete,
enableGFM,
} = 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);
Notes.initialize(notesUrl, notesIds, now, diffView, enableGFM);
};