From 118a42ce7f1d04720b57a6ab4c89939cfb640a7b Mon Sep 17 00:00:00 2001 From: Jacob Schatz Date: Thu, 26 May 2016 22:32:12 -0400 Subject: Remove console.log --- app/assets/javascripts/lib/text_utility.js.coffee | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/assets/javascripts/lib/text_utility.js.coffee b/app/assets/javascripts/lib/text_utility.js.coffee index 86488d735ef..933df1b0d50 100644 --- a/app/assets/javascripts/lib/text_utility.js.coffee +++ b/app/assets/javascripts/lib/text_utility.js.coffee @@ -32,8 +32,11 @@ selObj = window.getSelection() selRange = selObj.getRangeAt(0) text = $textArea.val() - lineBreak = '\n' if textArea.selectionStart > 0 - console.log(textArea.selectionStart,lineBreak) + if textArea.selectionStart > 0 + lineBreak = '\n' + else + lineBreak = '' + replaceWith = @replaceRange( text, textArea.selectionStart, @@ -82,7 +85,6 @@ $thisTextarea.val(latestUndo.newVal) gl.text.addListeners = () -> - console.log('addListeners') self = @ $('.js-md').on 'click', -> $this = $(@) @@ -119,7 +121,6 @@ gl.text._previousState, $thisTextarea.val() ) - gl.text._previousState = $thisTextarea.val() gl.text.removeListeners = () -> -- cgit v1.2.1