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',
2016-11-14 10:09:11 -03:00
function($scope, $window, $log) {
2016-08-19 10:18:33 -03:00
$scope.appConfig = $window.appConfig;
$log.info('Running head controller:' + $window.appConfig.nameCase)
});