blob: 32d903db2ca363f97d5602d451765fc477de9bac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(function () {
'use strict';
angular
.module('dcaeApp.dashboard.about')
.controller('DashboardAboutController', dashboardAboutController);
function dashboardAboutController($state) {
var vm = this;
vm.test = "lllllllllllllllll";
}
})();
|