Wallet/src/js/controllers/headController.js

7 lines
238 B
JavaScript
Raw Normal View History

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