Fix bug where disconnecting using the 'power' button, resume acted strange

This commit is contained in:
Jake Stevenson 2016-09-07 13:29:05 -05:00
parent 18e88735be
commit 6cc5fab302
2 changed files with 4 additions and 2 deletions

View File

@ -47,8 +47,8 @@ bufferResume.service('bufferResume', ['settings', function(settings) {
};
// Clear out the recorded info. Maybe we'll do this when the user chooses to disconnect?
resumer.clear = function() {
record(undefined);
resumer.reset = function() {
hasResumed = false;
};
return resumer;

View File

@ -260,6 +260,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
$rootScope.$emit('notificationChanged');
$scope.connectbutton = 'Connect';
$scope.connectbuttonicon = 'glyphicon-chevron-right';
bufferResume.reset();
});
$scope.connectbutton = 'Connect';
$scope.connectbuttonicon = 'glyphicon-chevron-right';
@ -600,6 +601,7 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout',
$scope.disconnect = function() {
$scope.connectbutton = 'Connect';
$scope.connectbuttonicon = 'glyphicon-chevron-right';
bufferResume.reset();
connection.disconnect();
};
$scope.reconnect = function() {