blob: 3604530fc8c6192967269c74a4c70b1becf237db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(function () {
'use strict';
angular
.module('dcaeApp.dashboard.home')
.controller('DashboardHomeController', dashboardHomeController);
function dashboardHomeController($state) {
var vm = this;
}
})();
|