minimal css improvement

This commit is contained in:
Mario Colque 2014-05-01 14:19:50 -03:00
commit 9c533ed50b
2 changed files with 4 additions and 23 deletions

View file

@ -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);
};
});