Wallet/js/controllers/homeWallet.js

10 lines
239 B
JavaScript
Raw Normal View History

2014-10-31 11:49:52 -03:00
'use strict';
angular.module('copayApp.controllers').controller('HomeWalletController',
function($scope, $rootScope, $timeout, $modal, controllerUtils) {
2014-11-05 16:37:25 -03:00
controllerUtils.redirIfNotComplete();
2014-10-31 11:49:52 -03:00
$rootScope.title = 'Home';
}
);