From a9afb35b825bb59e8183864d0d433b7166bdcfb4 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Fri, 2 Mar 2012 21:05:49 +0100 Subject: [PATCH] Don't log too much --- app/assets/javascripts/player/vt.js.coffee | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/assets/javascripts/player/vt.js.coffee b/app/assets/javascripts/player/vt.js.coffee index dbf4034..07113a9 100644 --- a/app/assets/javascripts/player/vt.js.coffee +++ b/app/assets/javascripts/player/vt.js.coffee @@ -205,7 +205,6 @@ class AsciiIo.VT action = data[data.length - 1] modes = @parseParams(params) - console.log "private: #{@formattedData(data)}, action: #{action}, modes: #{modes}" for mode in modes if mode is 25 if action is "h" @@ -220,12 +219,10 @@ class AsciiIo.VT else if mode is 1049 if action is "h" # Save cursor position, switch to alternate screen buffer, and clear screen. - console.log 'switching' @switchToAlternateBuffer() @clearScreen() else if action is "l" # Clear screen, switch to normal screen buffer, and restore cursor position. - console.log 'switching back' @clearScreen() @switchToNormalBuffer() # else