From 5c14bf0ebccb78270554925a3658194309e5077a Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Mon, 2 Jun 2014 18:12:23 -0300 Subject: [PATCH] Removed form button from signin for create a new wallet. It is just a link. --- index.html | 5 +---- js/controllers/signin.js | 4 ---- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/index.html b/index.html index 6ede8aba1..8a3d065d5 100644 --- a/index.html +++ b/index.html @@ -194,13 +194,10 @@

Create a new wallet

-

Copay is a free, open-source, multisignature bitcoin wallet. A single-owner bitcoin wallet's security depends on carefully securing the private keys. With copay you can have multiple people controlling the funds, using bitcoin's multisignature functionality, requiring no trust in any third party.

- -
+ Create
diff --git a/js/controllers/signin.js b/js/controllers/signin.js index 057b548ba..8e6e332c5 100644 --- a/js/controllers/signin.js +++ b/js/controllers/signin.js @@ -12,10 +12,6 @@ angular.module('copay.signin').controller('SigninController', $scope.selectedWalletId = $scope.wallets.length ? $scope.wallets[0].id : null; $scope.openPassword = ''; - $scope.create = function(form) { - $location.path('setup'); - }; - $scope.open = function(form) { if (form && form.$invalid) { $rootScope.$flashMessage = { message: 'Please, enter required fields', type: 'error'};