16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('IndexController', function($scope, go, isCordova, identityService) {
|
|
$scope.init = function() {
|
|
|
|
};
|
|
|
|
$scope.resendVerificationEmail = function () {
|
|
identityService.resendVerificationEmail(function () {});
|
|
};
|
|
|
|
$scope.swipe = function(invert) {
|
|
go.swipe(invert);
|
|
};
|
|
|
|
});
|