wallet to wallet (sub)title
This commit is contained in:
parent
047171f38e
commit
c3cded5cb0
2 changed files with 6 additions and 2 deletions
|
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
angular.module('copayApp.controllers').controller('walletToWalletController', function($scope, $rootScope, $log, profileService, configService) {
|
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.$on("$ionicView.enter", function(event, data) {
|
||||||
$scope.walletsBch = profileService.getWallets({coin: 'bch'});
|
$scope.walletsBch = profileService.getWallets({coin: 'bch'});
|
||||||
$scope.walletsBtc = profileService.getWallets({coin: 'btc'});
|
$scope.walletsBtc = profileService.getWallets({coin: 'btc'});
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,10 @@
|
||||||
<ion-content>
|
<ion-content>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
Choose your origin wallet
|
{{headerTitle}}
|
||||||
</div>
|
</div>
|
||||||
<div class="subtitle">
|
<div class="subtitle">
|
||||||
This is where the Bitcoin will be taken out from.
|
{{headerSubtitle}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="list card">
|
<div class="list card">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue