wallet to wallet transfer views + css
This commit is contained in:
parent
8c124fba19
commit
b8bab036e6
6 changed files with 86 additions and 1 deletions
14
src/js/controllers/walletToWalletController.js
Normal file
14
src/js/controllers/walletToWalletController.js
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('walletToWalletController', function($scope, $rootScope, $log, profileService, configService) {
|
||||
|
||||
$scope.$on("$ionicView.enter", function(event, data) {
|
||||
$scope.walletsBch = profileService.getWallets({coin: 'bch'});
|
||||
$scope.walletsBtc = profileService.getWallets({coin: 'btc'});
|
||||
configService.whenAvailable(function(config) {
|
||||
$scope.selectedPriceDisplay = config.wallet.settings.priceDisplay;
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue