This commit is contained in:
Matias Alejo Garcia 2016-08-19 10:18:33 -03:00
parent 6cc3487818
commit 85bca8db68
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('headController',
function($scope, $window, $log) {
$scope.appConfig = $window.appConfig;
$log.info('Running head controller:' + $window.appConfig.nameCase)
});