Commit 6678c9edce96ef88fce7eb418f8722fb37d0ca75

Authored by Ashish Jain
1 parent 50190a8f

created initial project structure

400-SOURCECODE/AIAHTML5/AIAHTML5.Web.csproj
... ... @@ -105,7 +105,7 @@
105 105 <AutoAssignPort>True</AutoAssignPort>
106 106 <DevelopmentServerPort>55837</DevelopmentServerPort>
107 107 <DevelopmentServerVPath>/</DevelopmentServerVPath>
108   - <IISUrl>http://localhost/eLearningPlayer</IISUrl>
  108 + <IISUrl>http://localhost/AIA</IISUrl>
109 109 <NTLMAuthentication>False</NTLMAuthentication>
110 110 <UseCustomServer>False</UseCustomServer>
111 111 <CustomServerUrl>
... ...
400-SOURCECODE/AIAHTML5/app/main/AIA.js
1 1 'use strict';
2 2  
3   -var AIA = angular.module('AIA', ['ngSanitize', 'ngRoute', 'com.2fdevs.videogular', 'com.2fdevs.videogular.plugins.controls']);
  3 +var AIA = angular.module('AIA', ['ngSanitize', 'ngRoute']);
4 4  
5 5 AIA.constant('pages', [
6 6 {
7 7 name: 'Login',
8 8 pageSlug: 'login',
9   - pageUrl: 'views/login.html',
  9 + pageUrl: 'app/views/login.html',
10 10 pageController: 'AuthenticationController'
11 11 },
12 12 {
13   - name: 'Dissectible Anatomy Views',
  13 + name: 'Dissectible Anatomy Views List',
14 14 pageSlug: 'da-view-list',
15   - pageUrl: 'views/da/da-view-list.html',
  15 + pageUrl: 'app/views/da/da-body-view-list.html',
16 16 pageController: 'DAController'
17 17 },
18 18 {
19   - name: 'Dissectible Anatomy',
  19 + name: 'Dissectible Anatomy Body View',
20 20 pageSlug: 'da-body-view',
21   - pageUrl: 'views/da/da-body-view.html',
  21 + pageUrl: 'app/views/da/da-body-view.html',
22 22 pageController: 'DAController'
23 23 }
24 24 ]);
... ...