Wallet/src/js/controllers/headController.js

7 lines
254 B
JavaScript
Raw Normal View History

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