Wallet/js/controllers/index.js

16 lines
354 B
JavaScript
Raw Normal View History

'use strict';
2014-12-18 09:37:07 -03:00
angular.module('copayApp.controllers').controller('IndexController', function($scope, go, isCordova, identityService) {
$scope.init = function() {
};
2014-12-18 15:50:42 -03:00
$scope.resendVerificationEmail = function () {
identityService.resendVerificationEmail(function () {});
2014-12-18 09:37:07 -03:00
};
$scope.swipe = function(invert) {
go.swipe(invert);
};
});