fixes
This commit is contained in:
parent
3c0bc734a4
commit
33ba69cfec
2 changed files with 4 additions and 4 deletions
|
|
@ -7,7 +7,7 @@ angular.module('copayApp.controllers').controller('preferencesEmailController',
|
|||
var walletId = wallet.credentials.walletId;
|
||||
|
||||
var config = configService.getSync();
|
||||
config.amailFor = config.amailFor || {};
|
||||
config.emailFor = config.emailFor || {};
|
||||
$scope.email = config.emailFor && config.emailFor[walletId];
|
||||
|
||||
$scope.save = function(form) {
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
walletService.recreate();
|
||||
};
|
||||
|
||||
$scope.updateTxHistory = function() {
|
||||
$scope.updateTxHistory = function(cb) {
|
||||
|
||||
if ($scope.updatingTxHistory) return;
|
||||
|
||||
|
|
@ -152,7 +152,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
}, 1);
|
||||
return;
|
||||
return cb();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
@ -172,7 +172,7 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
|
||||
$scope.updateAll = function(cb) {
|
||||
$scope.updateStatus(false);
|
||||
$scope.updateTxHistory();
|
||||
$scope.updateTxHistory(cb);
|
||||
}
|
||||
|
||||
$scope.hideToggle = function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue