added resend button

This commit is contained in:
Ivan Socolsky 2014-12-18 09:37:07 -03:00
commit 173e5f2b12
3 changed files with 10 additions and 1 deletions

View file

@ -1,10 +1,14 @@
'use strict';
angular.module('copayApp.controllers').controller('IndexController', function($scope, go, isCordova) {
angular.module('copayApp.controllers').controller('IndexController', function($scope, go, isCordova, identityService) {
$scope.init = function() {
};
$scope.resendVerificationEmail = function (cb) {
identityService.resendVerificationEmail(cb);
};
$scope.swipe = function(invert) {
go.swipe(invert);
};