commit
46c76aa9d1
1 changed files with 5 additions and 5 deletions
|
|
@ -218,7 +218,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
||||||
} else {
|
} else {
|
||||||
if (memo)
|
if (memo)
|
||||||
$log.info(memo);
|
$log.info(memo);
|
||||||
$modalInstance.close(txpsb);
|
$modalInstance.close(txpsb, true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -287,7 +287,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
||||||
|
|
||||||
if (memo)
|
if (memo)
|
||||||
$log.info(memo);
|
$log.info(memo);
|
||||||
$modalInstance.close(txpb);
|
$modalInstance.close(txpb, true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, 100);
|
}, 100);
|
||||||
|
|
@ -314,11 +314,11 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
||||||
m.addClass('slideOutRight');
|
m.addClass('slideOutRight');
|
||||||
});
|
});
|
||||||
|
|
||||||
modalInstance.result.then(function(txp) {
|
modalInstance.result.then(function(txp, refreshUntilItChanges) {
|
||||||
self.setOngoingProcess();
|
self.setOngoingProcess();
|
||||||
if (txp) {
|
if (txp) {
|
||||||
txStatus.notify(txp, function() {
|
txStatus.notify(txp, function() {
|
||||||
$scope.$emit('Local/TxProposalAction', true);
|
$scope.$emit('Local/TxProposalAction', refreshUntilItChanges);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
|
|
@ -633,7 +633,7 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
|
||||||
$log.info(memo);
|
$log.info(memo);
|
||||||
|
|
||||||
txStatus.notify(btx, function() {
|
txStatus.notify(btx, function() {
|
||||||
$scope.$emit('Local/TxProposalAction');
|
$scope.$emit('Local/TxProposalAction', true);
|
||||||
return cb();
|
return cb();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue