fix copayers

This commit is contained in:
Matias Alejo Garcia 2016-08-17 13:16:06 -03:00
commit 3cb0676815
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
30 changed files with 786 additions and 177 deletions

View file

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('tabHomeController',
function($rootScope, $timeout, $scope, lodash, profileService, walletService, configService ) {
function($rootScope, $timeout, $scope, $state, lodash, profileService, walletService, configService ) {
var self = this;
@ -34,4 +34,7 @@ angular.module('copayApp.controllers').controller('tabHomeController',
self.setWallets();
self.updateAllClients();
$scope.bitpayCardEnabled = true; // TODO
$state.transitionTo('confirm', {toAmount:555500, toAddress: 'mvfAwUJohJWibGzBZgAUGsDarsr4Z4NovU', toName: 'bla bla'});
});