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);