aboutsummaryrefslogtreecommitdiffstats
path: root/app/core/header/header.controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/core/header/header.controller.js')
-rw-r--r--app/core/header/header.controller.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/core/header/header.controller.js b/app/core/header/header.controller.js
new file mode 100644
index 0000000..6f575ca
--- /dev/null
+++ b/app/core/header/header.controller.js
@@ -0,0 +1,15 @@
+(function () {
+
+ 'use strict';
+
+ angular
+ .module('dcaeApp.header')
+ .controller('HeaderController', HeaderController);
+
+ function HeaderController($rootScope) {
+ var vm = this;
+
+
+ }
+
+})();