Merge pull request #330 from maraoz/UI/transaction-links

show transaction id, and link to insight
This commit is contained in:
Gustavo Maximiliano Cortez 2014-05-09 09:37:10 -03:00
commit 4f8cca9cd6
2 changed files with 12 additions and 5 deletions

View file

@ -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;