Merge pull request #3132 from troggy/addon/send-balance

Create availableBalance directive for Send screen
This commit is contained in:
Matias Alejo Garcia 2015-09-03 13:19:45 -03:00
commit 4824724034
3 changed files with 23 additions and 23 deletions

View file

@ -316,4 +316,11 @@ angular.module('copayApp.directives')
replace: true,
template: '<img ng-src="{{ logo_url }}" alt="Copay">'
}
})
.directive('availableBalance', function() {
return {
restrict: 'E',
replace: true,
templateUrl: 'views/includes/available-balance.html'
}
});