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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2018-06-21 14:53:33 +0300
committerKushal Pandya <kushal@gitlab.com>2018-06-25 16:00:45 +0300
commitb13eef1d6741f317503f25ef22ed2e44b2fe7824 (patch)
tree5ad423682b158d857d4c3c3b0b6658388f0e1d8b /app/assets/javascripts/init_notes.js
parentdb9fb8a30e4c39f3b9ba2722a36af5288c5a5b35 (diff)
Update map name for default autocomplete config
Diffstat (limited to 'app/assets/javascripts/init_notes.js')
-rw-r--r--app/assets/javascripts/init_notes.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/init_notes.js b/app/assets/javascripts/init_notes.js
index 882aedfcc76..3c71258e53b 100644
--- a/app/assets/javascripts/init_notes.js
+++ b/app/assets/javascripts/init_notes.js
@@ -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);
};