summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/diff_notes
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-12-15 10:21:49 +0000
committerPhil Hughes <me@iamphill.com>2017-12-15 16:33:36 +0000
commiteaf2f48dc7db706fa1dea050543667f8cdebd4c4 (patch)
tree0333f4371bd9158bba99bb68c2c4a6aa960daa5e /app/assets/javascripts/diff_notes
parentd2f313dcbccc1e3642fb0ccdf0849e0ef4ec8e21 (diff)
downloadgitlab-ce-eaf2f48dc7db706fa1dea050543667f8cdebd4c4.tar.gz
Export and use Notes ES module
Diffstat (limited to 'app/assets/javascripts/diff_notes')
-rw-r--r--app/assets/javascripts/diff_notes/components/diff_note_avatars.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/diff_notes/components/diff_note_avatars.js b/app/assets/javascripts/diff_notes/components/diff_note_avatars.js
index 06ce84d7599..300b02da663 100644
--- a/app/assets/javascripts/diff_notes/components/diff_note_avatars.js
+++ b/app/assets/javascripts/diff_notes/components/diff_note_avatars.js
@@ -1,8 +1,8 @@
/* global CommentsStore */
-/* global notes */
import Vue from 'vue';
import collapseIcon from '../icons/collapse_icon.svg';
+import Notes from '../../notes';
import userAvatarImage from '../../vue_shared/components/user_avatar/user_avatar_image.vue';
const DiffNoteAvatars = Vue.extend({
@@ -129,7 +129,7 @@ const DiffNoteAvatars = Vue.extend({
},
methods: {
clickedAvatar(e) {
- notes.onAddDiffNote(e);
+ Notes.instance.onAddDiffNote(e);
// Toggle the active state of the toggle all button
this.toggleDiscussionsToggleState();