diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2018-09-05 13:53:34 +0200 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2018-09-07 12:25:50 +0200 |
commit | 93a947a10cc1fbe37a8921900011dbb405e9ca5f (patch) | |
tree | 953bcc9e5a93190bee4d7a8f0601344de0a8ce48 /app/assets/javascripts/notes.js | |
parent | d3cf0c247bcd665742047828aa8198ada43705f1 (diff) | |
download | gitlab-ce-93a947a10cc1fbe37a8921900011dbb405e9ca5f.tar.gz |
Removed Console.log
Diffstat (limited to 'app/assets/javascripts/notes.js')
-rw-r--r-- | app/assets/javascripts/notes.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/assets/javascripts/notes.js b/app/assets/javascripts/notes.js index 2296fd28793..20f38ceca0e 100644 --- a/app/assets/javascripts/notes.js +++ b/app/assets/javascripts/notes.js @@ -470,7 +470,6 @@ export default class Notes { * Render note in discussion area. To render inline notes use renderDiscussionNote. */ renderDiscussionNote(noteEntity, $form) { - console.log('RENDER DISC NOTE'); var discussionContainer, form, row, lineType, diffAvatarContainer; if (!Notes.isNewNote(noteEntity, this.note_ids)) { @@ -1132,7 +1131,6 @@ export default class Notes { * Removes the form and if necessary it's temporary row. */ removeDiscussionNoteForm(form) { - console.log('REM DISC'); var glForm, row; row = form.closest('tr'); glForm = form.data('glForm'); |