diff --git a/400-SOURCECODE/AIAHTML5/AIAHTML5.Web.csproj b/400-SOURCECODE/AIAHTML5/AIAHTML5.Web.csproj index 0b906d5..f023b48 100644 --- a/400-SOURCECODE/AIAHTML5/AIAHTML5.Web.csproj +++ b/400-SOURCECODE/AIAHTML5/AIAHTML5.Web.csproj @@ -105,7 +105,7 @@ True 55837 / - http://localhost/eLearningPlayer + http://localhost/AIA False False diff --git a/400-SOURCECODE/AIAHTML5/app/main/AIA.js b/400-SOURCECODE/AIAHTML5/app/main/AIA.js index 52c952e..deb0a09 100644 --- a/400-SOURCECODE/AIAHTML5/app/main/AIA.js +++ b/400-SOURCECODE/AIAHTML5/app/main/AIA.js @@ -1,24 +1,24 @@ 'use strict'; -var AIA = angular.module('AIA', ['ngSanitize', 'ngRoute', 'com.2fdevs.videogular', 'com.2fdevs.videogular.plugins.controls']); +var AIA = angular.module('AIA', ['ngSanitize', 'ngRoute']); AIA.constant('pages', [ { name: 'Login', pageSlug: 'login', - pageUrl: 'views/login.html', + pageUrl: 'app/views/login.html', pageController: 'AuthenticationController' }, { - name: 'Dissectible Anatomy Views', + name: 'Dissectible Anatomy Views List', pageSlug: 'da-view-list', - pageUrl: 'views/da/da-view-list.html', + pageUrl: 'app/views/da/da-body-view-list.html', pageController: 'DAController' }, { - name: 'Dissectible Anatomy', + name: 'Dissectible Anatomy Body View', pageSlug: 'da-body-view', - pageUrl: 'views/da/da-body-view.html', + pageUrl: 'app/views/da/da-body-view.html', pageController: 'DAController' } ]);