Merge pull request #330 from maraoz/UI/transaction-links
show transaction id, and link to insight
This commit is contained in:
commit
4f8cca9cd6
2 changed files with 12 additions and 5 deletions
|
|
@ -70,7 +70,6 @@ angular.module('copay.transactions').controller('TransactionsController',
|
|||
if (p.builder.isFullySigned()) {
|
||||
$scope.send(ntxid);
|
||||
_updateTxs();
|
||||
// $rootScope.$digest();
|
||||
}
|
||||
else {
|
||||
_updateTxs();
|
||||
|
|
@ -92,6 +91,10 @@ angular.module('copay.transactions').controller('TransactionsController',
|
|||
}
|
||||
};
|
||||
|
||||
$scope.getShortNetworkName = function() {
|
||||
return config.networkName.substring(0,4);
|
||||
};
|
||||
|
||||
$scope.reject = function (ntxid) {
|
||||
$scope.loading = true;
|
||||
var w = $rootScope.wallet;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue