wallet to wallet (sub)title

This commit is contained in:
Sebastiaan Pasma 2018-07-19 15:50:09 +02:00
commit c3cded5cb0
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F
2 changed files with 6 additions and 2 deletions

View file

@ -2,6 +2,10 @@
angular.module('copayApp.controllers').controller('walletToWalletController', function($scope, $rootScope, $log, profileService, configService) {
// TODO: change according to which screen this is, origin/destination
$scope.headerTitle = gettextCatalog.getString('Choose your origin wallet');
$scope.headerSubtitle = gettextCatalog.getString('This is where the Bitcoin will be taken out from.');
$scope.$on("$ionicView.enter", function(event, data) {
$scope.walletsBch = profileService.getWallets({coin: 'bch'});
$scope.walletsBtc = profileService.getWallets({coin: 'btc'});