summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2018-09-05 13:53:34 +0200
committerTim Zallmann <tzallmann@gitlab.com>2018-09-07 12:25:50 +0200
commit93a947a10cc1fbe37a8921900011dbb405e9ca5f (patch)
tree953bcc9e5a93190bee4d7a8f0601344de0a8ce48
parentd3cf0c247bcd665742047828aa8198ada43705f1 (diff)
downloadgitlab-ce-93a947a10cc1fbe37a8921900011dbb405e9ca5f.tar.gz
Removed Console.log
-rw-r--r--app/assets/javascripts/notes.js2
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');