Wallet/src/js/controllers/headController.js

6 lines
237 B
JavaScript
Raw Normal View History

2016-08-19 10:18:33 -03:00
'use strict';
2016-12-27 15:19:53 -03:00
angular.module('copayApp.controllers').controller('headController', function($scope, appConfigService, $log) {
$scope.appConfig = appConfigService;
$log.info('Running head controller:' + appConfigService.nameCase)
});