Sort buffers by number before switching to buffer with activity. This
better resembles how weechat works
This commit is contained in:
parent
ef62ddb267
commit
e4bbb64b4a
|
@ -713,8 +713,9 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
|
|||
|
||||
$rootScope.switchToActivityBuffer = function() {
|
||||
// Find next buffer with activity and switch to it
|
||||
for(var i in $scope.buffers) {
|
||||
var buffer = $scope.buffers[i];
|
||||
var sortedBuffers = _.sortBy($scope.buffers, 'number');
|
||||
for(var i in sortedBuffers) {
|
||||
var buffer = sortedBuffers[i];
|
||||
if(buffer.notification > 0) {
|
||||
$scope.setActiveBuffer(buffer.id);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue