aboutsummaryrefslogtreecommitdiffstats
path: root/app/main/dashboard/about/about.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/main/dashboard/about/about.controller.js')
-rw-r--r--app/main/dashboard/about/about.controller.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/main/dashboard/about/about.controller.js b/app/main/dashboard/about/about.controller.js
new file mode 100644
index 0000000..32d903d
--- /dev/null
+++ b/app/main/dashboard/about/about.controller.js
@@ -0,0 +1,16 @@
+(function () {
+
+ 'use strict';
+
+ angular
+ .module('dcaeApp.dashboard.about')
+ .controller('DashboardAboutController', dashboardAboutController);
+
+ function dashboardAboutController($state) {
+
+ var vm = this;
+ vm.test = "lllllllllllllllll";
+
+ }
+
+})();