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

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