added PasswordController

This commit is contained in:
Mario Colque 2014-04-28 16:22:59 -03:00
commit bbf9a9c4d5
4 changed files with 55 additions and 1 deletions

View file

@ -0,0 +1,11 @@
'use strict';
angular.module('copay.password').controller('PasswordController',
function($scope, $rootScope) {
$scope.title = 'Password';
$scope.getPassphrase = function() {
console.log('######### Password', $scope.password);
};
});