adding test modal for pin

This commit is contained in:
Gabriel Bazán 2017-05-09 11:48:12 -03:00
commit 9bb12e91f5
5 changed files with 127 additions and 53 deletions

View file

@ -0,0 +1,12 @@
'use strict';
angular.module('copayApp.controllers').controller('pinTestController', function($scope, applicationService) {
$scope.goodPin = function() {
applicationService.successfullUnlocked = true;
$scope.pintestview.hide();
};
$scope.badPin = function() {};
});