fix emit call

This commit is contained in:
Javier 2015-10-30 12:55:41 -03:00
parent ae132bd91d
commit f65e971cf4
2 changed files with 5 additions and 8 deletions

View File

@ -1006,13 +1006,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
// UX event handlers
$rootScope.$on('Local/ClearHistory', function(event, walletId) {
storageService.removeTxHistory(walletId, function(err) {
if (err) root.showErrorPopup(err);
$log.debug('The wallet transaction history has been deleted');
self.txHistory = [];
self.updateHistory();
});
$log.debug('The wallet transaction history has been deleted');
self.txHistory = [];
self.updateHistory();
});
$rootScope.$on('Local/ColorUpdated', function(event) {

View File

@ -98,8 +98,9 @@ angular.module('copayApp.controllers').controller('preferencesInformation',
storageService.removeTxHistory(c.walletId, function(err) {
if (err) return $log.err(err);
$scope.$emit('Local/ClearHistory');
$timeout(function() {
$scope.$emit('Local/ClearHistory');
go.walletHome();
}, 100);
});