New schema for signin/join a wallet
This commit is contained in:
parent
67190909b6
commit
0ffb8eb42f
2 changed files with 69 additions and 40 deletions
|
|
@ -75,4 +75,26 @@ angular.module('copayApp.controllers').controller('SigninController',
|
|||
});
|
||||
});
|
||||
}
|
||||
|
||||
$scope.isHome = 1;
|
||||
$scope.isJoin = 0;
|
||||
$scope.isOpen = 0;
|
||||
|
||||
$scope.backWallet = function() {
|
||||
$scope.isHome = 1;
|
||||
$scope.isJoin = 0;
|
||||
$scope.isOpen = 0;
|
||||
};
|
||||
|
||||
$scope.openWallet = function() {
|
||||
$scope.isHome = 0;
|
||||
$scope.isJoin = 0;
|
||||
$scope.isOpen = 1;
|
||||
};
|
||||
|
||||
$scope.joinWallet = function() {
|
||||
$scope.isHome = 0;
|
||||
$scope.isOpen = 0;
|
||||
$scope.isJoin = 1;
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue