Wallet/js/controllers/homeWallet.js
2014-11-05 16:37:25 -03:00

10 lines
239 B
JavaScript

'use strict';
angular.module('copayApp.controllers').controller('HomeWalletController',
function($scope, $rootScope, $timeout, $modal, controllerUtils) {
controllerUtils.redirIfNotComplete();
$rootScope.title = 'Home';
}
);