aboutsummaryrefslogtreecommitdiffstats
path: root/app/core/header/header.controller.js
blob: 6f575caaf294c180c77080f7e1db7ca473fbf9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(function () {

    'use strict';

    angular
        .module('dcaeApp.header')
        .controller('HeaderController', HeaderController);

    function HeaderController($rootScope) {
        var vm = this;


    }

})();