Fix bug with switching to core buffer when buffer is closed

This commit is contained in:
Tor Hveem 2013-10-29 12:34:16 +01:00
parent 4b5192ce7f
commit 3c01ad1b68
1 changed files with 6 additions and 4 deletions

View File

@ -361,15 +361,17 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
/*
* Closes a weechat buffer. Sets the first buffer
* as active.
* as active, if the closing buffer was active before
*
* @param bufferId id of the buffer to close
* @return undefined
*/
this.closeBuffer = function(bufferId) {
delete(this.model['buffers'][bufferId.id]);
var wasActive = this.model['buffers'][bufferId.id].active;
if(wasActive) {
var firstBuffer = _.keys(this.model['buffers'])[0];
this.setActiveBuffer(firstBuffer);
}
delete(this.model['buffers'][bufferId.id]);
}
}]);