minimal css improvement
This commit is contained in:
parent
018e248dd1
commit
9c533ed50b
2 changed files with 4 additions and 23 deletions
|
|
@ -1,19 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copay.password').controller('PasswordController',
|
||||
function($scope, $rootScope, $location, Passphrase, walletFactory, controllerUtils) {
|
||||
$scope.title = 'Password';
|
||||
$scope.loading = false;
|
||||
|
||||
if (!$rootScope.openedWalletId) {
|
||||
$location.path('signin');
|
||||
}
|
||||
|
||||
$scope.getPassphrase = function() {
|
||||
$scope.loading = true;
|
||||
var passphrase = Passphrase.getBase64($scope.password);
|
||||
|
||||
var w = walletFactory.open($rootScope.openedWalletId, { passphrase: passphrase});
|
||||
controllerUtils.startNetwork(w);
|
||||
};
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue