aboutsummaryrefslogtreecommitdiff
path: root/src/main/webapp/apps/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/apps/app.js')
-rw-r--r--src/main/webapp/apps/app.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/webapp/apps/app.js b/src/main/webapp/apps/app.js
index e69de29..c1ea158 100644
--- a/src/main/webapp/apps/app.js
+++ b/src/main/webapp/apps/app.js
@@ -0,0 +1,8 @@
+var directives = angular.module('core.directives', []);
+
+directives.directive('navbar', function () {
+ return {
+ restrict: 'E',
+ templateUrl: '/apps/core/navbar.html'
+ };
+});