diff --git a/web/app/assets/javascripts/commentDialog.js b/web/app/assets/javascripts/commentDialog.js index f734c98fd..ea2f64b5e 100644 --- a/web/app/assets/javascripts/commentDialog.js +++ b/web/app/assets/javascripts/commentDialog.js @@ -111,13 +111,11 @@ var $txtComment = $('#txtComment', $screen); if (!context.JK.currentUserId) { - console.log('here1'); $txtComment.attr('placeholder', 'You must be logged in to add a comment.'); $btnSelector.removeClass('button-orange'); $btnSelector.addClass('button-grey'); } else { - console.log('here2'); $btnSelector.unbind('click'); $btnSelector.click(addComment); }