Add icons for user actions at transaction proposal

This commit is contained in:
Yemel Jardi 2014-07-31 20:34:21 -03:00
commit 9c633f1918
2 changed files with 22 additions and 14 deletions

View file

@ -166,6 +166,10 @@ angular.module('copayApp.controllers').controller('TransactionsController',
}
};
$scope.hasAction = function(actions, action) {
return actions.hasOwnProperty('create');
}
$scope.getShortNetworkName = function() {
return config.networkName.substring(0, 4);
};