Wallet/js/controllers/index.js
2014-12-18 15:50:52 -03:00

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);
};
});