From 72f1f2e95299bab660391f6ec208532b82744c61 Mon Sep 17 00:00:00 2001 From: arnaucode Date: Sun, 22 Oct 2017 12:20:10 +0200 Subject: [PATCH] implemented travel join system, added notifications page and to navbar --- app.js | 3 +- index.html | 1 + views/navbar.html | 6 ++ views/navbar.js | 13 +++ views/notifications/notifications.html | 40 ++++++++ views/notifications/notifications.js | 32 ++++++ views/travel/travel.html | 31 +++++- views/travel/travel.js | 133 ++++++++++++++++++++++++- 8 files changed, 255 insertions(+), 4 deletions(-) create mode 100644 views/notifications/notifications.html create mode 100644 views/notifications/notifications.js diff --git a/app.js b/app.js index 899f7b1..5730a36 100755 --- a/app.js +++ b/app.js @@ -19,7 +19,8 @@ angular.module('webapp', [ 'app.users', 'app.user', 'app.travel', - 'app.newTravel' + 'app.newTravel', + 'app.notifications' ]). config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) { $locationProvider.hashPrefix('!'); diff --git a/index.html b/index.html index 1290e2b..9631f05 100755 --- a/index.html +++ b/index.html @@ -71,6 +71,7 @@ + diff --git a/views/navbar.html b/views/navbar.html index ac11a75..dfd8c91 100755 --- a/views/navbar.html +++ b/views/navbar.html @@ -20,6 +20,12 @@