Removed console.log from notes

This commit is contained in:
Phil Hughes 2016-04-04 10:49:08 +01:00
parent 1f50833430
commit f62d7d261b

View file

@ -65,8 +65,6 @@ class @Notes
# add diff note
$(document).on "click", ".js-add-diff-note-button", @addDiffNote
$(document).on "mouseover", ".js-add-diff-note-button", ->
console.log $(this).data('line-code')
# hide diff note form
$(document).on "click", ".js-close-discussion-note-form", @cancelDiscussionForm
@ -505,7 +503,6 @@ class @Notes
addDiffNote: (e) =>
e.preventDefault()
$link = $(e.currentTarget)
console.log $link.data('line-code')
row = $link.closest("tr")
nextRow = row.next()
hasNotes = nextRow.is(".notes_holder")