16 lines
344 B
JavaScript
16 lines
344 B
JavaScript
'use strict';
|
|
|
|
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);
|
|
};
|
|
|
|
});
|