Remove console.log statements

buffer-history
David Cormier 11 years ago committed by Lorenz Hübschle-Schneider
parent 7eb45f7fcb
commit 0480988bec
  1. 3
      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);

Loading…
Cancel
Save