From 0480988becc53d733208e3130534639a455cb4b8 Mon Sep 17 00:00:00 2001 From: David Cormier Date: Fri, 2 Jan 2015 11:00:21 -0500 Subject: [PATCH] Remove console.log statements --- js/models.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/models.js b/js/models.js index 7719278..9a53fb3 100644 --- a/js/models.js +++ b/js/models.js @@ -568,8 +568,6 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter) history.recordBufferSwitch(activeBuffer); } - console.log('buffer switched to', activeBuffer.fullName, 'history:', history.get()); - $rootScope.$emit('activeBufferChanged', unreadSum); $rootScope.$emit('notificationChanged'); return true; @@ -609,7 +607,6 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter) this.switchToPrevNextBuffer = function(forward) { var newBufferId = history.getPrevNextBuffer(forward); - console.log('switching to buffer:', newBufferId); if (newBufferId) { this.setActiveBuffer(newBufferId, null, true); history.moveInHistory(forward);