Commit 3e92d6601af106876d2c5d34c0eb049e6faa39d2
1 parent
97686911
all the other views
Showing
20 changed files
with
1650 additions
and
25 deletions
400-SOURCECODE/AIAHTML5.Web/AIAHTML5.Web.csproj
... | ... | @@ -39,18 +39,30 @@ |
39 | 39 | </PropertyGroup> |
40 | 40 | <ItemGroup> |
41 | 41 | <Content Include="app\controllers\3dAController.js" /> |
42 | + <Content Include="app\controllers\ADAMImgController.js" /> | |
43 | + <Content Include="app\controllers\AnatTestController.js" /> | |
44 | + <Content Include="app\controllers\AODController.js" /> | |
42 | 45 | <Content Include="app\controllers\AuthenticationController.js" /> |
46 | + <Content Include="app\controllers\CAController.js" /> | |
47 | + <Content Include="app\controllers\CBuildController.js" /> | |
43 | 48 | <Content Include="app\controllers\CIController.js" /> |
44 | 49 | <Content Include="app\controllers\DAController.js" /> |
45 | 50 | <Content Include="app\controllers\HomeController.js" /> |
51 | + <Content Include="app\controllers\LabExercController.js" /> | |
46 | 52 | <Content Include="app\main\AIA.js" /> |
47 | 53 | <Content Include="app\services\AuthenticationService.js" /> |
48 | 54 | <Content Include="app\services\load-json-service.js" /> |
49 | 55 | <Content Include="app\views\3dA\3dA-view.html" /> |
50 | - <Content Include="app\views\ci\ci-grid-view.html" /> | |
56 | + <Content Include="app\views\ADAMImg\ADAMImg-view.html" /> | |
57 | + <Content Include="app\views\AnatTest\AnatTest-view.html" /> | |
58 | + <Content Include="app\views\AOD\AOD-view.html" /> | |
59 | + <Content Include="app\views\ca\ca-view.html" /> | |
60 | + <Content Include="app\views\CBuild\CBuild-view.html" /> | |
61 | + <Content Include="app\views\ci\ci-view.html" /> | |
51 | 62 | <Content Include="app\views\da\da-body-view-list.html" /> |
52 | 63 | <Content Include="app\views\da\da-body-view.html" /> |
53 | 64 | <Content Include="app\views\da\da-view.html" /> |
65 | + <Content Include="app\views\LabExerc\LabExerc-view.html" /> | |
54 | 66 | <Content Include="app\widget\MainMenu.html" /> |
55 | 67 | <Content Include="content\css\main.css" /> |
56 | 68 | <Content Include="content\images\1.jpg" /> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/3dAController.js
400-SOURCECODE/AIAHTML5.Web/app/controllers/ADAMImgController.js
0 → 100644
1 | +AIA.controller("ADAMImgController", ["$scope", "$rootScope", "Modules", "$log", | |
2 | +function ($scope, $rootScope, Modules, log) { | |
3 | + $scope.showme = true; | |
4 | + $scope.IsVisible = function () { | |
5 | + $scope.showme = $scope.showme ? false : true; | |
6 | + } | |
7 | + $rootScope.currentActiveModuleTitle = Modules[8].Name; | |
8 | +}] | |
9 | + | |
10 | + | |
11 | + | |
12 | +); | |
0 | 13 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/AODController.js
0 → 100644
1 | +AIA.controller("AODController", ["$scope", "$rootScope", "Modules", "$log", | |
2 | +function ($scope, $rootScope, Modules, log) { | |
3 | + $scope.showme = true; | |
4 | + $scope.IsVisible = function () { | |
5 | + $scope.showme = $scope.showme ? false : true; | |
6 | + } | |
7 | + $rootScope.currentActiveModuleTitle = Modules[9].Name; | |
8 | +}] | |
9 | + | |
10 | + | |
11 | + | |
12 | +); | |
0 | 13 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/AnatTestController.js
0 → 100644
1 | +AIA.controller("AnatTestController", ["$scope", "$rootScope", "Modules", "$log", | |
2 | +function ($scope, $rootScope, Modules, log) { | |
3 | + $scope.showme = false; | |
4 | + $scope.IsVisible = function () { | |
5 | + $scope.showme = $scope.showme ? false : true; | |
6 | + } | |
7 | + $rootScope.currentActiveModuleTitle = Modules[6].Name; | |
8 | +}] | |
9 | + | |
10 | +); | |
0 | 11 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/CAController.js
0 → 100644
1 | +AIA.controller("CAController", ["$scope", "$rootScope", "Modules", "$log", | |
2 | +function ($scope, $rootScope, Modules, log) { | |
3 | + | |
4 | + $rootScope.currentActiveModuleTitle = Modules[4].Name; | |
5 | + $scope.showme = true; | |
6 | + $scope.IsVisible = function () { | |
7 | + $scope.showme = $scope.showme ? false : true; | |
8 | + } | |
9 | +}] | |
10 | + | |
11 | + | |
12 | + | |
13 | +); | |
0 | 14 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/CBuildController.js
0 → 100644
1 | +AIA.controller("CBuildController", ["$scope", "$rootScope", "Modules", "$log", | |
2 | +function ($scope, $rootScope, Modules, log) { | |
3 | + $scope.showme = false; | |
4 | + $scope.IsVisible = function () { | |
5 | + $scope.showme = $scope.showme ? false : true; | |
6 | + } | |
7 | + $rootScope.currentActiveModuleTitle = Modules[5].Name; | |
8 | +}] | |
9 | + | |
10 | + | |
11 | + | |
12 | +); | |
0 | 13 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/CIController.js
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -17,7 +17,12 @@ function ($scope,$rootScope, $compile,$http, $log, $location, $timeout,DA,Module |
17 | 17 | //view specific constants |
18 | 18 | $scope.voId ; |
19 | 19 | $scope.layerNo; |
20 | - $scope.daCounter=1; | |
20 | + $scope.daCounter = 1; | |
21 | + | |
22 | + $scope.showme = false; | |
23 | + $scope.IsVisible = function () { | |
24 | + $scope.showme = $scope.showme ? false : true; | |
25 | + } | |
21 | 26 | |
22 | 27 | |
23 | 28 | //get the DA body view list based on selected gender | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
0 → 100644
1 | +AIA.controller("LabExercController", ["$scope", "$rootScope", "Modules", "$log", | |
2 | +function ($scope, $rootScope, Modules, log) { | |
3 | + $scope.showme = false; | |
4 | + $scope.IsVisible = function () { | |
5 | + $scope.showme = $scope.showme ? false : true; | |
6 | + } | |
7 | + $rootScope.currentActiveModuleTitle = Modules[7].Name; | |
8 | +}] | |
9 | + | |
10 | +); | |
0 | 11 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
... | ... | @@ -24,12 +24,19 @@ AIA.constant('pages', [ |
24 | 24 | pageController: 'DAController' |
25 | 25 | }, |
26 | 26 | { |
27 | - name: 'Clinical Illustration Grid View', | |
28 | - pageSlug: 'ci-grid-view', | |
29 | - pageUrl: 'app/views/ci/ci-grid-view.html', | |
27 | + name: 'Clinical Illustrations', | |
28 | + pageSlug: 'ci-view', | |
29 | + pageUrl: 'app/views/ci/ci-view.html', | |
30 | 30 | pageController: 'CIController' |
31 | 31 | |
32 | 32 | }, |
33 | + { | |
34 | + name: 'Clinical Animationa', | |
35 | + pageSlug: 'ca-view', | |
36 | + pageUrl: 'app/views/ca/ca-view.html', | |
37 | + pageController: 'CAController' | |
38 | + | |
39 | + }, | |
33 | 40 | { |
34 | 41 | name: '3D Anatomy', |
35 | 42 | pageSlug: '3dA-view', |
... | ... | @@ -38,6 +45,41 @@ AIA.constant('pages', [ |
38 | 45 | |
39 | 46 | }, |
40 | 47 | { |
48 | + name: 'Curriculum Builder', | |
49 | + pageSlug: 'CBuild-view', | |
50 | + pageUrl: 'app/views/CBuild/CBuild-view.html', | |
51 | + pageController: 'CBuildController' | |
52 | + | |
53 | + }, | |
54 | + { | |
55 | + name: 'Anatomy Tests', | |
56 | + pageSlug: 'AnatTest-view', | |
57 | + pageUrl: 'app/views/AnatTest/AnatTest-view.html', | |
58 | + pageController: 'AnatTestController' | |
59 | + | |
60 | + }, | |
61 | + { | |
62 | + name: 'Lab Exercises', | |
63 | + pageSlug: 'LabExerc-view', | |
64 | + pageUrl: 'app/views/LabExerc/LabExerc-view.html', | |
65 | + pageController: 'LabExercController' | |
66 | + | |
67 | + }, | |
68 | + { | |
69 | + name: 'ADAM Images', | |
70 | + pageSlug: 'ADAMImg-view', | |
71 | + pageUrl: 'app/views/ADAMImg/ADAMImg-view.html', | |
72 | + pageController: 'ADAMImgController' | |
73 | + | |
74 | + }, | |
75 | + { | |
76 | + name: 'ADAM On Demand', | |
77 | + pageSlug: 'AOD-view', | |
78 | + pageUrl: 'app/views/AOD/AOD-view.html', | |
79 | + pageController: 'AODController' | |
80 | + | |
81 | + }, | |
82 | + { | |
41 | 83 | name: 'home', |
42 | 84 | pageSlug: 'home', |
43 | 85 | pageUrl: 'app/widget/MainView.html', |
... | ... | @@ -72,6 +114,30 @@ AIA.constant('Modules', [ |
72 | 114 | Id:4, |
73 | 115 | Name: 'Clinical Illustrations', |
74 | 116 | }, |
117 | + { | |
118 | + Id: 5, | |
119 | + Name: 'Clinical Animations', | |
120 | + }, | |
121 | + { | |
122 | + Id: 6, | |
123 | + Name: 'Curriculum Builder', | |
124 | + }, | |
125 | + { | |
126 | + Id: 7, | |
127 | + Name: 'Anatomy Tests', | |
128 | + }, | |
129 | + { | |
130 | + Id: 8, | |
131 | + Name: 'Lab Exercises', | |
132 | + }, | |
133 | + { | |
134 | + Id: 9, | |
135 | + Name: 'ADAM Images', | |
136 | + }, | |
137 | + { | |
138 | + Id: 10, | |
139 | + Name: 'ADAM On Demand', | |
140 | + }, | |
75 | 141 | |
76 | 142 | ]); |
77 | 143 | AIA.constant('BodyViewws', [ | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/ADAMImg/ADAMImg-view.html
0 → 100644
1 | +<div class="bodyWrap row "> | |
2 | + <div ng-include="'app/widget/MainMenu.html'" /> | |
3 | + <div class="main"> | |
4 | + | |
5 | + <div class="row"> | |
6 | + <div class="col-sm-12 stickey-area" style="padding-left:25px; width:99%"> | |
7 | + <div class="breadcrumb" style="padding-bottom:5px;"> | |
8 | + <div class="row" align="center"> | |
9 | + <form class="form-inline padd5"> | |
10 | + <div class="form-group"> | |
11 | + <label for="exampleInputName2" class="text-primary">Search</label> | |
12 | + <input type="text" class="form-control input-sm col-sm" id="exampleInputName2" placeholder=""> | |
13 | + </div> | |
14 | + <button type="submit" class="btn btn-primary btn-sm"><i class="fa fa-search"></i> GO</button> | |
15 | + </form> | |
16 | + <nav> | |
17 | + <ul class="pagination pagination-sm no-margin"> | |
18 | + | |
19 | + <li><a href="#">A</a></li> | |
20 | + <li><a href="#">B</a></li> | |
21 | + <li><a href="#">C</a></li> | |
22 | + <li><a href="#">D</a></li> | |
23 | + <li><a href="#">E</a></li> | |
24 | + <li><a href="#">F</a></li> | |
25 | + <li><a href="#">G</a></li> | |
26 | + <li><a href="#">H</a></li> | |
27 | + <li><a href="#">I</a></li> | |
28 | + <li><a href="#">J</a></li> | |
29 | + <li><a href="#">K</a></li> | |
30 | + <li><a href="#">L</a></li> | |
31 | + <li><a href="#">M</a></li> | |
32 | + <li><a href="#">N</a></li> | |
33 | + <li><a href="#">O</a></li> | |
34 | + <li><a href="#">P</a></li> | |
35 | + <li><a href="#">Q</a></li> | |
36 | + <li><a href="#">R</a></li> | |
37 | + <li><a href="#">S</a></li> | |
38 | + <li><a href="#">T</a></li> | |
39 | + <li><a href="#">U</a></li> | |
40 | + <li><a href="#">V</a></li> | |
41 | + <li><a href="#">W</a></li> | |
42 | + <li><a href="#">X</a></li> | |
43 | + <li><a href="#">Y</a></li> | |
44 | + <li><a href="#">Z</a></li> | |
45 | + <button class="btn btn-primary btn-sm"><i class="fa fa-eye"></i> Show All</button> | |
46 | + </ul> | |
47 | + </nav> | |
48 | + | |
49 | + </div> | |
50 | + </div> | |
51 | + </div> | |
52 | + </div> | |
53 | + <div class="row tab-content" style="padding-left:25px; width:99%"> | |
54 | + <div role="tabpanel" class="tab-pane active" id="grid-view"> | |
55 | + <div class="col-sm-3 col-lg-2"> | |
56 | + <div class="thumbnail"> | |
57 | + <a href="clinical-animations-details.html"> | |
58 | + <img src="~/../content/images/clinical-illustrations-1.jpg" alt="" title=""> | |
59 | + <div class="caption"> | |
60 | + <p>1.5-week Fetus</p> | |
61 | + </div> | |
62 | + </a> | |
63 | + </div> | |
64 | + </div> | |
65 | + <div class="col-sm-3 col-lg-2"> | |
66 | + <div class="thumbnail"> | |
67 | + <a href="clinical-animations-details.html"> | |
68 | + <img src="~/../content/images/clinical-illustrations-2.jpg" alt="" title=""> | |
69 | + <div class="caption"> | |
70 | + <p>16-week Fetus</p> | |
71 | + </div> | |
72 | + </a> | |
73 | + </div> | |
74 | + </div> | |
75 | + <div class="col-sm-3 col-lg-2"> | |
76 | + <div class="thumbnail"> | |
77 | + <a href="clinical-animations-details.html"> | |
78 | + <img src="~/../content/images/atlas-anatomy-1.jpg" alt="" title=""> | |
79 | + <div class="caption"> | |
80 | + <p>1st & 2nd Intercostal Spaces</p> | |
81 | + </div> | |
82 | + </a> | |
83 | + </div> | |
84 | + </div> | |
85 | + <div class="col-sm-3 col-lg-2"> | |
86 | + <div class="thumbnail"> | |
87 | + <a href="clinical-animations-details.html"> | |
88 | + <img src="~/../content/images/atlas-anatomy-2.jpg" alt="" title=""> | |
89 | + <div class="caption"> | |
90 | + <p>1st 3rd & 8th Ribs</p> | |
91 | + </div> | |
92 | + </a> | |
93 | + </div> | |
94 | + </div> | |
95 | + <div class="col-sm-3 col-lg-2"> | |
96 | + <div class="thumbnail"> | |
97 | + <a href="clinical-animations-details.html"> | |
98 | + <img src="~/../content/images/clinical-illustrations-3.jpg" alt="" title=""> | |
99 | + <div class="caption"> | |
100 | + <p>24-week Fetus</p> | |
101 | + </div> | |
102 | + </a> | |
103 | + </div> | |
104 | + </div> | |
105 | + <div class="col-sm-3 col-lg-2"> | |
106 | + <div class="thumbnail"> | |
107 | + <a href="clinical-animations-details.html"> | |
108 | + <img src="~/../content/images/clinical-illustrations-4.jpg" alt="" title=""> | |
109 | + <div class="caption"> | |
110 | + <p>26 to 28-week Fetus</p> | |
111 | + </div> | |
112 | + </a> | |
113 | + </div> | |
114 | + </div> | |
115 | + <div class="col-sm-3 col-lg-2"> | |
116 | + <div class="thumbnail"> | |
117 | + <a href="clinical-animations-details.html"> | |
118 | + <img src="~/../content/images/atlas-anatomy-3.jpg" alt="" title=""> | |
119 | + <div class="caption"> | |
120 | + <p>Abdomen at L5 Vertebra (Inf)</p> | |
121 | + </div> | |
122 | + </a> | |
123 | + </div> | |
124 | + </div> | |
125 | + <div class="col-sm-3 col-lg-2"> | |
126 | + <div class="thumbnail"> | |
127 | + <a href="clinical-animations-details.html"> | |
128 | + <img src="~/../content/images/atlas-anatomy-4.jpg" alt="" title=""> | |
129 | + <div class="caption"> | |
130 | + <p>Abdomen at T12 Vertebra (Inf)</p> | |
131 | + </div> | |
132 | + </a> | |
133 | + </div> | |
134 | + </div> | |
135 | + <div class="col-sm-3 col-lg-2"> | |
136 | + <div class="thumbnail"> | |
137 | + <a href="clinical-animations-details.html"> | |
138 | + <img src="~/../content/images/atlas-anatomy-5.jpg" alt="" title=""> | |
139 | + <div class="caption"> | |
140 | + <p>Abdominal Aortic Angiogram</p> | |
141 | + </div> | |
142 | + </a> | |
143 | + </div> | |
144 | + </div> | |
145 | + <div class="col-sm-3 col-lg-2"> | |
146 | + <div class="thumbnail"> | |
147 | + <a href="clinical-animations-details.html"> | |
148 | + <img src="~/../content/images/clinical-animations-10.jpg" alt="" title=""> | |
149 | + <div class="caption"> | |
150 | + <p>Endocrine glands - general overview</p> | |
151 | + </div> | |
152 | + </a> | |
153 | + </div> | |
154 | + </div> | |
155 | + <div class="col-sm-3 col-lg-2"> | |
156 | + <div class="thumbnail"> | |
157 | + <a href="clinical-animations-details.html"> | |
158 | + <img src="~/../content/images/clinical-animations-11.jpg" alt="" title=""> | |
159 | + <div class="caption"> | |
160 | + <p>Enlarged prostate gland (BPH)</p> | |
161 | + </div> | |
162 | + </a> | |
163 | + </div> | |
164 | + </div> | |
165 | + <div class="col-sm-3 col-lg-2"> | |
166 | + <div class="thumbnail"> | |
167 | + <a href="clinical-animations-details.html"> | |
168 | + <img src="~/../content/images/clinical-animations-12.jpg" alt="" title=""> | |
169 | + <div class="caption"> | |
170 | + <p>Fetal development - interactive tool</p> | |
171 | + </div> | |
172 | + </a> | |
173 | + </div> | |
174 | + </div> | |
175 | + | |
176 | + <div class="col-sm-3 col-lg-2"> | |
177 | + <div class="thumbnail"> | |
178 | + <a href="clinical-animations-details.html"> | |
179 | + <img src="~/../content/images/clinical-animations-1.jpg" alt="" title=""> | |
180 | + <div class="caption"> | |
181 | + <p>Blood clotting</p> | |
182 | + </div> | |
183 | + </a> | |
184 | + </div> | |
185 | + </div> | |
186 | + <div class="col-sm-3 col-lg-2"> | |
187 | + <div class="thumbnail"> | |
188 | + <a href="clinical-animations-details.html"> | |
189 | + <img src="~/../content/images/clinical-animations-2.jpg" alt="" title=""> | |
190 | + <div class="caption"> | |
191 | + <p>Blood pressure</p> | |
192 | + </div> | |
193 | + </a> | |
194 | + </div> | |
195 | + </div> | |
196 | + <div class="col-sm-3 col-lg-2"> | |
197 | + <div class="thumbnail"> | |
198 | + <a href="clinical-animations-details.html"> | |
199 | + <img src="~/../content/images/clinical-animations-3.jpg" alt="" title=""> | |
200 | + <div class="caption"> | |
201 | + <p>Brain components</p> | |
202 | + </div> | |
203 | + </a> | |
204 | + </div> | |
205 | + </div> | |
206 | + <div class="col-sm-3 col-lg-2"> | |
207 | + <div class="thumbnail"> | |
208 | + <a href="clinical-animations-details.html"> | |
209 | + <img src="~/../content/images/clinical-animations-4.jpg" alt="" title=""> | |
210 | + <div class="caption"> | |
211 | + <p>Cardiac conduction system</p> | |
212 | + </div> | |
213 | + </a> | |
214 | + </div> | |
215 | + </div> | |
216 | + <div class="col-sm-3 col-lg-2"> | |
217 | + <div class="thumbnail"> | |
218 | + <a href="clinical-animations-details.html"> | |
219 | + <img src="~/../content/images/clinical-animations-5.jpg" alt="" title=""> | |
220 | + <div class="caption"> | |
221 | + <p>Conception - interactive tool</p> | |
222 | + </div> | |
223 | + </a> | |
224 | + </div> | |
225 | + </div> | |
226 | + <div class="col-sm-3 col-lg-2"> | |
227 | + <div class="thumbnail"> | |
228 | + <a href="clinical-animations-details.html"> | |
229 | + <img src="~/../content/images/clinical-animations-6.jpg" alt="" title=""> | |
230 | + <div class="caption"> | |
231 | + <p>Coronary artery bypass graft (CABG)</p> | |
232 | + </div> | |
233 | + </a> | |
234 | + </div> | |
235 | + </div> | |
236 | + <div class="col-sm-3 col-lg-2"> | |
237 | + <div class="thumbnail"> | |
238 | + <a href="clinical-animations-details.html"> | |
239 | + <img src="~/../content/images/clinical-animations-7.jpg" alt="" title=""> | |
240 | + <div class="caption"> | |
241 | + <p>Directional coronary atherectomy (DCA)</p> | |
242 | + </div> | |
243 | + </a> | |
244 | + </div> | |
245 | + </div> | |
246 | + <div class="col-sm-3 col-lg-2"> | |
247 | + <div class="thumbnail"> | |
248 | + <a href="clinical-animations-details.html"> | |
249 | + <img src="~/../content/images/clinical-animations-8.jpg" alt="" title=""> | |
250 | + <div class="caption"> | |
251 | + <p>Egg cell production</p> | |
252 | + </div> | |
253 | + </a> | |
254 | + </div> | |
255 | + </div> | |
256 | + <div class="col-sm-3 col-lg-2"> | |
257 | + <div class="thumbnail"> | |
258 | + <a href="clinical-animations-details.html"> | |
259 | + <img src="~/../content/images/clinical-animations-9.jpg" alt="" title=""> | |
260 | + <div class="caption"> | |
261 | + <p>Electrocardiogram (ECG) - interactive tool</p> | |
262 | + </div> | |
263 | + </a> | |
264 | + </div> | |
265 | + </div> | |
266 | + <div class="col-sm-3 col-lg-2"> | |
267 | + <div class="thumbnail"> | |
268 | + <a href="clinical-animations-details.html"> | |
269 | + <img src="~/../content/images/clinical-animations-10.jpg" alt="" title=""> | |
270 | + <div class="caption"> | |
271 | + <p>Endocrine glands - general overview</p> | |
272 | + </div> | |
273 | + </a> | |
274 | + </div> | |
275 | + </div> | |
276 | + <div class="col-sm-3 col-lg-2"> | |
277 | + <div class="thumbnail"> | |
278 | + <a href="clinical-animations-details.html"> | |
279 | + <img src="~/../content/images/clinical-animations-11.jpg" alt="" title=""> | |
280 | + <div class="caption"> | |
281 | + <p>Enlarged prostate gland (BPH)</p> | |
282 | + </div> | |
283 | + </a> | |
284 | + </div> | |
285 | + </div> | |
286 | + <div class="col-sm-3 col-lg-2"> | |
287 | + <div class="thumbnail"> | |
288 | + <a href="clinical-animations-details.html"> | |
289 | + <img src="~/../content/images/clinical-animations-12.jpg" alt="" title=""> | |
290 | + <div class="caption"> | |
291 | + <p>Fetal development - interactive tool</p> | |
292 | + </div> | |
293 | + </a> | |
294 | + </div> | |
295 | + </div> | |
296 | + </div> | |
297 | + <div role="tabpanel" class="tab-pane" id="list-view"> | |
298 | + <div class="col-sm-12 table-responsive "> | |
299 | + <table class="table table-hover table-condensed bg-white"> | |
300 | + <thead> | |
301 | + <tr class="active"> | |
302 | + <th>Title</th> | |
303 | + <th>Region</th> | |
304 | + <th>System</th> | |
305 | + <th>View</th> | |
306 | + <th>Type</th> | |
307 | + <th>Specialty</th> | |
308 | + </tr> | |
309 | + </thead> | |
310 | + <tbody> | |
311 | + <tr> | |
312 | + <td>1st & 2nd Intercostal Spaces</td> | |
313 | + <td>Thorax</td> | |
314 | + <td>Cardiovascular, Muscular,</td> | |
315 | + <td>Anterior</td> | |
316 | + <td>Cadaver Photograph</td> | |
317 | + <td> </td> | |
318 | + </tr> | |
319 | + <tr> | |
320 | + <td>1st, 3rd, &8th Ribs</td> | |
321 | + <td>Body Wall and Back</td> | |
322 | + <td>Skeletal</td> | |
323 | + <td>Inferior</td> | |
324 | + <td>Cadaver Photograph</td> | |
325 | + <td> </td> | |
326 | + </tr> | |
327 | + <tr> | |
328 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
329 | + <td>Abdomen</td> | |
330 | + <td>Cardiovascular, Digestive,</td> | |
331 | + <td>Inferior</td> | |
332 | + <td>Illustration</td> | |
333 | + <td> </td> | |
334 | + </tr> | |
335 | + <tr> | |
336 | + <td>1st & 2nd Intercostal Spaces</td> | |
337 | + <td>Thorax</td> | |
338 | + <td>Cardiovascular, Muscular,</td> | |
339 | + <td>Anterior</td> | |
340 | + <td>Cadaver Photograph</td> | |
341 | + <td> </td> | |
342 | + </tr> | |
343 | + <tr> | |
344 | + <td>1st, 3rd, &8th Ribs</td> | |
345 | + <td>Body Wall and Back</td> | |
346 | + <td>Skeletal</td> | |
347 | + <td>Inferior</td> | |
348 | + <td>Cadaver Photograph</td> | |
349 | + <td> </td> | |
350 | + </tr> | |
351 | + <tr> | |
352 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
353 | + <td>Abdomen</td> | |
354 | + <td>Cardiovascular, Digestive,</td> | |
355 | + <td>Inferior</td> | |
356 | + <td>Illustration</td> | |
357 | + <td> </td> | |
358 | + </tr> | |
359 | + <tr> | |
360 | + <td>1st & 2nd Intercostal Spaces</td> | |
361 | + <td>Thorax</td> | |
362 | + <td>Cardiovascular, Muscular,</td> | |
363 | + <td>Anterior</td> | |
364 | + <td>Cadaver Photograph</td> | |
365 | + <td> </td> | |
366 | + </tr> | |
367 | + <tr> | |
368 | + <td>1st, 3rd, &8th Ribs</td> | |
369 | + <td>Body Wall and Back</td> | |
370 | + <td>Skeletal</td> | |
371 | + <td>Inferior</td> | |
372 | + <td>Cadaver Photograph</td> | |
373 | + <td> </td> | |
374 | + </tr> | |
375 | + <tr> | |
376 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
377 | + <td>Abdomen</td> | |
378 | + <td>Cardiovascular, Digestive,</td> | |
379 | + <td>Inferior</td> | |
380 | + <td>Illustration</td> | |
381 | + <td> </td> | |
382 | + </tr> | |
383 | + <tr> | |
384 | + <td>1st & 2nd Intercostal Spaces</td> | |
385 | + <td>Thorax</td> | |
386 | + <td>Cardiovascular, Muscular,</td> | |
387 | + <td>Anterior</td> | |
388 | + <td>Cadaver Photograph</td> | |
389 | + <td> </td> | |
390 | + </tr> | |
391 | + <tr> | |
392 | + <td>1st, 3rd, &8th Ribs</td> | |
393 | + <td>Body Wall and Back</td> | |
394 | + <td>Skeletal</td> | |
395 | + <td>Inferior</td> | |
396 | + <td>Cadaver Photograph</td> | |
397 | + <td> </td> | |
398 | + </tr> | |
399 | + <tr> | |
400 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
401 | + <td>Abdomen</td> | |
402 | + <td>Cardiovascular, Digestive,</td> | |
403 | + <td>Inferior</td> | |
404 | + <td>Illustration</td> | |
405 | + <td> </td> | |
406 | + </tr> | |
407 | + <tr> | |
408 | + <td>1st & 2nd Intercostal Spaces</td> | |
409 | + <td>Thorax</td> | |
410 | + <td>Cardiovascular, Muscular,</td> | |
411 | + <td>Anterior</td> | |
412 | + <td>Cadaver Photograph</td> | |
413 | + <td> </td> | |
414 | + </tr> | |
415 | + <tr> | |
416 | + <td>1st, 3rd, &8th Ribs</td> | |
417 | + <td>Body Wall and Back</td> | |
418 | + <td>Skeletal</td> | |
419 | + <td>Inferior</td> | |
420 | + <td>Cadaver Photograph</td> | |
421 | + <td> </td> | |
422 | + </tr> | |
423 | + <tr> | |
424 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
425 | + <td>Abdomen</td> | |
426 | + <td>Cardiovascular, Digestive,</td> | |
427 | + <td>Inferior</td> | |
428 | + <td>Illustration</td> | |
429 | + <td> </td> | |
430 | + </tr> | |
431 | + <tr class="active"> | |
432 | + <td colspan="6"> | |
433 | + | |
434 | + <div class="col-sm-3 col-lg-2 no-padding"> | |
435 | + <div class="thumbnail no-margin"> | |
436 | + <a href="atlas-anatomy-detail.html"> | |
437 | + <img src="~/../content/images/clinical-animations-4.jpg" alt="" title=""> | |
438 | + | |
439 | + </a> | |
440 | + </div> | |
441 | + </div> | |
442 | + | |
443 | + </td> | |
444 | + | |
445 | + </tr> | |
446 | + </tbody> | |
447 | + </table> | |
448 | + | |
449 | + </div> | |
450 | + </div> | |
451 | + </div> | |
452 | + </div> | |
453 | +</div> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/AOD/AOD-view.html
0 → 100644
1 | +<div class="bodyWrap row "> | |
2 | + <div ng-include="'app/widget/MainMenu.html'" /> | |
3 | + <div class="main"> | |
4 | + | |
5 | + | |
6 | + <div class="row tab-content" style="padding-left:25px; width:99%"> | |
7 | + <div role="tabpanel" class="tab-pane active" id="grid-view"> | |
8 | + <div class="col-sm-3 col-lg-2"> | |
9 | + <div class="thumbnail"> | |
10 | + <a href="clinical-animations-details.html"> | |
11 | + <img src="~/../content/images/aod-1.jpg" alt="" title=""> | |
12 | + <div class="caption"> | |
13 | + <p>Cardiovascular System - Anatomy</p> | |
14 | + </div> | |
15 | + </a> | |
16 | + </div> | |
17 | + </div> | |
18 | + <div class="col-sm-3 col-lg-2"> | |
19 | + <div class="thumbnail"> | |
20 | + <a href="clinical-animations-details.html"> | |
21 | + <img src="~/../content/images/aod-2.jpg" alt="" title=""> | |
22 | + <div class="caption"> | |
23 | + <p>Cardiovascular System - Physiology</p> | |
24 | + </div> | |
25 | + </a> | |
26 | + </div> | |
27 | + </div> | |
28 | + <div class="col-sm-3 col-lg-2"> | |
29 | + <div class="thumbnail"> | |
30 | + <a href="clinical-animations-details.html"> | |
31 | + <img src="~/../content/images/aod-3.jpg" alt="" title=""> | |
32 | + <div class="caption"> | |
33 | + <p>Digestive System - Anatomy</p> | |
34 | + </div> | |
35 | + </a> | |
36 | + </div> | |
37 | + </div> | |
38 | + <div class="col-sm-3 col-lg-2"> | |
39 | + <div class="thumbnail"> | |
40 | + <a href="clinical-animations-details.html"> | |
41 | + <img src="~/../content/images/aod-4.jpg" alt="" title=""> | |
42 | + <div class="caption"> | |
43 | + <p>Digestive System - Physiology</p> | |
44 | + </div> | |
45 | + </a> | |
46 | + </div> | |
47 | + </div> | |
48 | + <div class="col-sm-3 col-lg-2"> | |
49 | + <div class="thumbnail"> | |
50 | + <a href="clinical-animations-details.html"> | |
51 | + <img src="~/../content/images/aod-5.jpg" alt="" title=""> | |
52 | + <div class="caption"> | |
53 | + <p>Endocrine System - Anatomy</p> | |
54 | + </div> | |
55 | + </a> | |
56 | + </div> | |
57 | + </div> | |
58 | + <div class="col-sm-3 col-lg-2"> | |
59 | + <div class="thumbnail"> | |
60 | + <a href="clinical-animations-details.html"> | |
61 | + <img src="~/../content/images/aod-6.jpg" alt="" title=""> | |
62 | + <div class="caption"> | |
63 | + <p>Endocrine System - Physiology</p> | |
64 | + </div> | |
65 | + </a> | |
66 | + </div> | |
67 | + </div> | |
68 | + <div class="col-sm-3 col-lg-2"> | |
69 | + <div class="thumbnail"> | |
70 | + <a href="clinical-animations-details.html"> | |
71 | + <img src="~/../content/images/aod-7.jpg" alt="" title=""> | |
72 | + <div class="caption"> | |
73 | + <p>Immune System - Anatomy</p> | |
74 | + </div> | |
75 | + </a> | |
76 | + </div> | |
77 | + </div> | |
78 | + <div class="col-sm-3 col-lg-2"> | |
79 | + <div class="thumbnail"> | |
80 | + <a href="clinical-animations-details.html"> | |
81 | + <img src="~/../content/images/aod-8.jpg" alt="" title=""> | |
82 | + <div class="caption"> | |
83 | + <p>Immune System - Physiology</p> | |
84 | + </div> | |
85 | + </a> | |
86 | + </div> | |
87 | + </div> | |
88 | + <div class="col-sm-3 col-lg-2"> | |
89 | + <div class="thumbnail"> | |
90 | + <a href="clinical-animations-details.html"> | |
91 | + <img src="~/../content/images/aod-9.jpg" alt="" title=""> | |
92 | + <div class="caption"> | |
93 | + <p>Musculoskeletal System - Anatomy</p> | |
94 | + </div> | |
95 | + </a> | |
96 | + </div> | |
97 | + </div> | |
98 | + <div class="col-sm-3 col-lg-2"> | |
99 | + <div class="thumbnail"> | |
100 | + <a href="clinical-animations-details.html"> | |
101 | + <img src="~/../content/images/aod-10.jpg" alt="" title=""> | |
102 | + <div class="caption"> | |
103 | + <p>Musculoskeletal System - Physiology</p> | |
104 | + </div> | |
105 | + </a> | |
106 | + </div> | |
107 | + </div> | |
108 | + <div class="col-sm-3 col-lg-2"> | |
109 | + <div class="thumbnail"> | |
110 | + <a href="clinical-animations-details.html"> | |
111 | + <img src="~/../content/images/aod-11.jpg" alt="" title=""> | |
112 | + <div class="caption"> | |
113 | + <p>Nervous System - Anatomy</p> | |
114 | + </div> | |
115 | + </a> | |
116 | + </div> | |
117 | + </div> | |
118 | + <div class="col-sm-3 col-lg-2"> | |
119 | + <div class="thumbnail"> | |
120 | + <a href="clinical-animations-details.html"> | |
121 | + <img src="~/../content/images/aod-12.jpg" alt="" title=""> | |
122 | + <div class="caption"> | |
123 | + <p>Nervous System - Physiology</p> | |
124 | + </div> | |
125 | + </a> | |
126 | + </div> | |
127 | + </div> | |
128 | + | |
129 | + <div class="col-sm-3 col-lg-2"> | |
130 | + <div class="thumbnail"> | |
131 | + <a href="clinical-animations-details.html"> | |
132 | + <img src="~/../content/images/aod-13.jpg" alt="" title=""> | |
133 | + <div class="caption"> | |
134 | + <p>Respiratory System - Anatomy</p> | |
135 | + </div> | |
136 | + </a> | |
137 | + </div> | |
138 | + </div> | |
139 | + <div class="col-sm-3 col-lg-2"> | |
140 | + <div class="thumbnail"> | |
141 | + <a href="clinical-animations-details.html"> | |
142 | + <img src="~/../content/images/aod-14.jpg" alt="" title=""> | |
143 | + <div class="caption"> | |
144 | + <p>Respiratory System - Physiology</p> | |
145 | + </div> | |
146 | + </a> | |
147 | + </div> | |
148 | + </div> | |
149 | + <div class="col-sm-3 col-lg-2"> | |
150 | + <div class="thumbnail"> | |
151 | + <a href="clinical-animations-details.html"> | |
152 | + <img src="~/../content/images/aod-15.jpg" alt="" title=""> | |
153 | + <div class="caption"> | |
154 | + <p>Skin - Anatomy</p> | |
155 | + </div> | |
156 | + </a> | |
157 | + </div> | |
158 | + </div> | |
159 | + <div class="col-sm-3 col-lg-2"> | |
160 | + <div class="thumbnail"> | |
161 | + <a href="clinical-animations-details.html"> | |
162 | + <img src="~/../content/images/aod-16.jpg" alt="" title=""> | |
163 | + <div class="caption"> | |
164 | + <p>Skin - Physiology</p> | |
165 | + </div> | |
166 | + </a> | |
167 | + </div> | |
168 | + </div> | |
169 | + <div class="col-sm-3 col-lg-2"> | |
170 | + <div class="thumbnail"> | |
171 | + <a href="clinical-animations-details.html"> | |
172 | + <img src="~/../content/images/aod-17.jpg" alt="" title=""> | |
173 | + <div class="caption"> | |
174 | + <p>The Blood Anatomy and Physiology</p> | |
175 | + </div> | |
176 | + </a> | |
177 | + </div> | |
178 | + </div> | |
179 | + <div class="col-sm-3 col-lg-2"> | |
180 | + <div class="thumbnail"> | |
181 | + <a href="clinical-animations-details.html"> | |
182 | + <img src="~/../content/images/aod-18.jpg" alt="" title=""> | |
183 | + <div class="caption"> | |
184 | + <p>Understanding Cell Biology</p> | |
185 | + </div> | |
186 | + </a> | |
187 | + </div> | |
188 | + </div> | |
189 | + <div class="col-sm-3 col-lg-2"> | |
190 | + <div class="thumbnail"> | |
191 | + <a href="clinical-animations-details.html"> | |
192 | + <img src="~/../content/images/aod-19.jpg" alt="" title=""> | |
193 | + <div class="caption"> | |
194 | + <p>Urinary System - Physiology</p> | |
195 | + </div> | |
196 | + </a> | |
197 | + </div> | |
198 | + </div> | |
199 | + <div class="col-sm-3 col-lg-2"> | |
200 | + <div class="thumbnail"> | |
201 | + <a href="clinical-animations-details.html"> | |
202 | + <img src="~/../content/images/aod-20.jpg" alt="" title=""> | |
203 | + <div class="caption"> | |
204 | + <p>Visual System - Anatomy</p> | |
205 | + </div> | |
206 | + </a> | |
207 | + </div> | |
208 | + </div> | |
209 | + <div class="col-sm-3 col-lg-2"> | |
210 | + <div class="thumbnail"> | |
211 | + <a href="clinical-animations-details.html"> | |
212 | + <img src="~/../content/images/aod-21.jpg" alt="" title=""> | |
213 | + <div class="caption"> | |
214 | + <p>Visual System - Physiology</p> | |
215 | + </div> | |
216 | + </a> | |
217 | + </div> | |
218 | + </div> | |
219 | + | |
220 | + | |
221 | + | |
222 | + </div> | |
223 | + <div role="tabpanel" class="tab-pane" id="list-view"> | |
224 | + <div class="col-sm-12 table-responsive "> | |
225 | + <table class="table table-hover table-condensed bg-white"> | |
226 | + <thead> | |
227 | + <tr class="active"> | |
228 | + <th>Title</th> | |
229 | + <th>System</th> | |
230 | + | |
231 | + </tr> | |
232 | + </thead> | |
233 | + <tbody> | |
234 | + <tr> | |
235 | + <td>1st & 2nd Intercostal Spaces</td> | |
236 | + <td>Thorax</td> | |
237 | + | |
238 | + </tr> | |
239 | + <tr> | |
240 | + <td>1st, 3rd, &8th Ribs</td> | |
241 | + <td>Body Wall and Back</td> | |
242 | + | |
243 | + </tr> | |
244 | + <tr> | |
245 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
246 | + <td>Abdomen</td> | |
247 | + | |
248 | + </tr> | |
249 | + <tr> | |
250 | + <td>1st & 2nd Intercostal Spaces</td> | |
251 | + <td>Thorax</td> | |
252 | + | |
253 | + </tr> | |
254 | + <tr> | |
255 | + <td>1st, 3rd, &8th Ribs</td> | |
256 | + <td>Body Wall and Back</td> | |
257 | + | |
258 | + </tr> | |
259 | + <tr> | |
260 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
261 | + <td>Abdomen</td> | |
262 | + | |
263 | + </tr> | |
264 | + <tr> | |
265 | + <td>1st & 2nd Intercostal Spaces</td> | |
266 | + <td>Thorax</td> | |
267 | + | |
268 | + </tr> | |
269 | + <tr> | |
270 | + <td>1st, 3rd, &8th Ribs</td> | |
271 | + <td>Body Wall and Back</td> | |
272 | + | |
273 | + </tr> | |
274 | + <tr> | |
275 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
276 | + <td>Abdomen</td> | |
277 | + | |
278 | + </tr> | |
279 | + <tr> | |
280 | + <td>1st & 2nd Intercostal Spaces</td> | |
281 | + <td>Thorax</td> | |
282 | + | |
283 | + </tr> | |
284 | + <tr> | |
285 | + <td>1st, 3rd, &8th Ribs</td> | |
286 | + <td>Body Wall and Back</td> | |
287 | + | |
288 | + </tr> | |
289 | + <tr> | |
290 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
291 | + <td>Abdomen</td> | |
292 | + | |
293 | + </tr> | |
294 | + <tr> | |
295 | + <td>1st & 2nd Intercostal Spaces</td> | |
296 | + <td>Thorax</td> | |
297 | + | |
298 | + </tr> | |
299 | + <tr> | |
300 | + <td>1st, 3rd, &8th Ribs</td> | |
301 | + <td>Body Wall and Back</td> | |
302 | + | |
303 | + </tr> | |
304 | + <tr> | |
305 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
306 | + <td>Abdomen</td> | |
307 | + | |
308 | + </tr> | |
309 | + <tr class="active"> | |
310 | + <td colspan="6"> | |
311 | + | |
312 | + <div class="col-sm-3 col-lg-2 no-padding"> | |
313 | + <div class="thumbnail no-margin"> | |
314 | + <a href="atlas-anatomy-detail.html"> | |
315 | + <img src="~/../content/images/aod-12.jpg" alt="" title=""> | |
316 | + | |
317 | + </a> | |
318 | + </div> | |
319 | + </div> | |
320 | + </td> | |
321 | + </tr> | |
322 | + </tbody> | |
323 | + </table> | |
324 | + | |
325 | + </div> | |
326 | + </div> | |
327 | + </div> | |
328 | + </div> | |
329 | +</div> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/AnatTest/AnatTest-view.html
0 → 100644
1 | +<div class="bodyWrap row "> | |
2 | + <div ng-include="'app/widget/MainMenu.html'" /> | |
3 | + <div class="main mCustomScrollbar _mCS_1 mCS-autoHide"> | |
4 | + | |
5 | + | |
6 | + <div class="col-sm-12"> | |
7 | + <div class="col-sm-3 col-lg-2"> | |
8 | + <div class="thumbnail"> | |
9 | + <a href="anatomy-tests-detail.html"> | |
10 | + <img title="" alt="" src="~/../content/images/anatomy-tests-1.jpg"> | |
11 | + <div class="caption"> | |
12 | + <p>Head and Neck </p> | |
13 | + </div> | |
14 | + </a> | |
15 | + </div> | |
16 | + </div> | |
17 | + <div class="col-sm-3 col-lg-2"> | |
18 | + <div class="thumbnail"> | |
19 | + <a href="anatomy-tests-detail.html"> | |
20 | + <img title="" alt="" src="~/../content/images/anatomy-tests-2.jpg"> | |
21 | + <div class="caption"> | |
22 | + <p> Upper Limb </p> | |
23 | + </div> | |
24 | + </a> | |
25 | + </div> | |
26 | + </div> | |
27 | + <div class="col-sm-3 col-lg-2"> | |
28 | + <div class="thumbnail"> | |
29 | + <a href="anatomy-tests-detail.html"> | |
30 | + <img title="" alt="" src="~/../content/images/anatomy-tests-3.jpg"> | |
31 | + <div class="caption"> | |
32 | + <p> Body Wall and Back</p> | |
33 | + </div> | |
34 | + </a> | |
35 | + </div> | |
36 | + </div> | |
37 | + <div class="col-sm-3 col-lg-2"> | |
38 | + <div class="thumbnail"> | |
39 | + <a href="anatomy-tests-detail.html"> | |
40 | + <img title="" alt="" src="~/../content/images/anatomy-tests-4.jpg"> | |
41 | + <div class="caption"> | |
42 | + <p>Thorax</p> | |
43 | + </div> | |
44 | + </a> | |
45 | + </div> | |
46 | + </div> | |
47 | + <div class="col-sm-3 col-lg-2"> | |
48 | + <div class="thumbnail"> | |
49 | + <a href="anatomy-tests-detail.html"> | |
50 | + <img title="" alt="" src="~/../content/images/anatomy-tests-5.jpg"> | |
51 | + <div class="caption"> | |
52 | + <p>Abdomen</p> | |
53 | + </div> | |
54 | + </a> | |
55 | + </div> | |
56 | + </div> | |
57 | + <div class="col-sm-3 col-lg-2"> | |
58 | + <div class="thumbnail"> | |
59 | + <a href="anatomy-tests-detail.html"> | |
60 | + <img title="" alt="" src="~/../content/images/anatomy-tests-6.jpg"> | |
61 | + <div class="caption"> | |
62 | + <p>Pelvis and Perineum</p> | |
63 | + </div> | |
64 | + </a> | |
65 | + </div> | |
66 | + </div> | |
67 | + <div class="col-sm-3 col-lg-2"> | |
68 | + <div class="thumbnail"> | |
69 | + <a href="anatomy-tests-detail.html"> | |
70 | + <img title="" alt="" src="~/../content/images/anatomy-tests-7.jpg"> | |
71 | + <div class="caption"> | |
72 | + <p>Lower Limb</p> | |
73 | + </div> | |
74 | + </a> | |
75 | + </div> | |
76 | + </div> | |
77 | + | |
78 | + </div> | |
79 | + | |
80 | + | |
81 | + </div> | |
82 | +</div> | |
83 | +<script> | |
84 | + (function ($) { | |
85 | + $(window).load(function () { | |
86 | + $(".main").mCustomScrollbar({ | |
87 | + autoHideScrollbar: true, | |
88 | + //theme:"rounded" | |
89 | + }); | |
90 | + | |
91 | + }); | |
92 | + })(jQuery); | |
93 | +</script> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/CBuild/CBuild-view.html
0 → 100644
1 | +<div class="bodyWrap row "> | |
2 | + <div ng-include="'app/widget/MainMenu.html'" /> | |
3 | + <div class="main"> | |
4 | + <div class="col-sm-12"> | |
5 | + <div class="well" style=" height:100vh"> | |
6 | + <div class="col-sm-6"> | |
7 | + <ul class="list-group"> | |
8 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> AIA Curriculum Builder Guide</a></li> | |
9 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> Annotation Tools Guide</a></li> | |
10 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> Articulations</a></li> | |
11 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Cardiovascular System</a></li> | |
12 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Diagestive System</a></li> | |
13 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Endocrine System</a></li> | |
14 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Lesser Omentum</a></li> | |
15 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Lymphatic</a></li> | |
16 | + </ul> | |
17 | + </div> | |
18 | + <div class="col-sm-6"> | |
19 | + <ul class="list-group"> | |
20 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Menisci of the Knee Joint</a></li> | |
21 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Muscular System</a></li> | |
22 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Nervous System</a></li> | |
23 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Reproductive System</a></li> | |
24 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Respiratory System</a></li> | |
25 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Skeletal System</a></li> | |
26 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Special Senses</a></li> | |
27 | + <li class="list-group-item" data-toggle="modal" data-target="#myModal-1"><a href="#"><i class="fa fa-check"></i> The Urinary Senses</a></li> | |
28 | + </ul> | |
29 | + </div> | |
30 | + <div class="clearfix"></div> | |
31 | + </div> | |
32 | + </div> | |
33 | + </div> | |
34 | +</div> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/LabExerc/LabExerc-view.html
0 → 100644
1 | +<div class="bodyWrap row "> | |
2 | + <div ng-include="'app/widget/MainMenu.html'" /> | |
3 | + <div class="main"> | |
4 | + | |
5 | + | |
6 | + <div class="col-sm-12"> | |
7 | + <div class="col-sm-3 col-lg-2"> | |
8 | + <div class="thumbnail"> | |
9 | + <a href="lab-exercises-detail.html"> | |
10 | + <img title="" alt="" src="~/../content/images/lab-exercises-1.jpg"> | |
11 | + <div class="caption"> | |
12 | + <p>Cardiovasular System</p> | |
13 | + </div> | |
14 | + </a> | |
15 | + </div> | |
16 | + </div> | |
17 | + <div class="col-sm-3 col-lg-2"> | |
18 | + <div class="thumbnail"> | |
19 | + <a href="lab-exercises-detail.html"> | |
20 | + <img title="" alt="" src="~/../content/images/lab-exercises-2.jpg"> | |
21 | + <div class="caption"> | |
22 | + <p>Digestive System</p> | |
23 | + </div> | |
24 | + </a> | |
25 | + </div> | |
26 | + </div> | |
27 | + <div class="col-sm-3 col-lg-2"> | |
28 | + <div class="thumbnail"> | |
29 | + <a href="lab-exercises-detail.html"> | |
30 | + <img title="" alt="" src="~/../content/images/lab-exercises-3.jpg"> | |
31 | + <div class="caption"> | |
32 | + <p>Endocrine System</p> | |
33 | + </div> | |
34 | + </a> | |
35 | + </div> | |
36 | + </div> | |
37 | + <div class="col-sm-3 col-lg-2"> | |
38 | + <div class="thumbnail"> | |
39 | + <a href="lab-exercises-detail.html"> | |
40 | + <img title="" alt="" src="~/../content/images/lab-exercises-4.jpg"> | |
41 | + <div class="caption"> | |
42 | + <p>Lymphatic System</p> | |
43 | + </div> | |
44 | + </a> | |
45 | + </div> | |
46 | + </div> | |
47 | + <div class="col-sm-3 col-lg-2"> | |
48 | + <div class="thumbnail"> | |
49 | + <a href="lab-exercises-detail.html"> | |
50 | + <img title="" alt="" src="~/../content/images/lab-exercises-5.jpg"> | |
51 | + <div class="caption"> | |
52 | + <p>Muscular System</p> | |
53 | + </div> | |
54 | + </a> | |
55 | + </div> | |
56 | + </div> | |
57 | + <div class="col-sm-3 col-lg-2"> | |
58 | + <div class="thumbnail"> | |
59 | + <a href="lab-exercises-detail.html"> | |
60 | + <img title="" alt="" src="~/../content/images/lab-exercises-6.jpg"> | |
61 | + <div class="caption"> | |
62 | + <p>Nervous System</p> | |
63 | + </div> | |
64 | + </a> | |
65 | + </div> | |
66 | + </div> | |
67 | + <div class="col-sm-3 col-lg-2"> | |
68 | + <div class="thumbnail"> | |
69 | + <a href="lab-exercises-detail.html"> | |
70 | + <img title="" alt="" src="~/../content/images/lab-exercises-7.jpg"> | |
71 | + <div class="caption"> | |
72 | + <p>Respiroductive System</p> | |
73 | + </div> | |
74 | + </a> | |
75 | + </div> | |
76 | + </div> | |
77 | + <div class="col-sm-3 col-lg-2"> | |
78 | + <div class="thumbnail"> | |
79 | + <a href="lab-exercises-detail.html"> | |
80 | + <img title="" alt="" src="~/../content/images/lab-exercises-8.jpg"> | |
81 | + <div class="caption"> | |
82 | + <p>Respiratory System</p> | |
83 | + </div> | |
84 | + </a> | |
85 | + </div> | |
86 | + </div> | |
87 | + <div class="col-sm-3 col-lg-2"> | |
88 | + <div class="thumbnail"> | |
89 | + <a href="lab-exercises-detail.html"> | |
90 | + <img title="" alt="" src="~/../content/images/lab-exercises-9.jpg"> | |
91 | + <div class="caption"> | |
92 | + <p>Skeletal System</p> | |
93 | + </div> | |
94 | + </a> | |
95 | + </div> | |
96 | + </div> | |
97 | + <div class="col-sm-3 col-lg-2"> | |
98 | + <div class="thumbnail"> | |
99 | + <a href="lab-exercises-detail.html"> | |
100 | + <img title="" alt="" src="~/../content/images/lab-exercises-10.jpg"> | |
101 | + <div class="caption"> | |
102 | + <p>Special Senses</p> | |
103 | + </div> | |
104 | + </a> | |
105 | + </div> | |
106 | + </div> | |
107 | + <div class="col-sm-3 col-lg-2"> | |
108 | + <div class="thumbnail"> | |
109 | + <a href="lab-exercises-detail.html"> | |
110 | + <img title="" alt="" src="~/../content/images/lab-exercises-11.jpg"> | |
111 | + <div class="caption"> | |
112 | + <p>Urinary System</p> | |
113 | + </div> | |
114 | + </a> | |
115 | + </div> | |
116 | + </div> | |
117 | + | |
118 | + </div> | |
119 | + | |
120 | + | |
121 | + </div> | |
122 | +</div> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/ca/ca-view.html
0 → 100644
1 | +<div class="bodyWrap row "> | |
2 | + <div ng-include="'app/widget/MainMenu.html'" /> | |
3 | + <div class="main" style="overflow-y:auto;"> | |
4 | + | |
5 | + <div class="row"> | |
6 | + <div class="col-sm-12 stickey-area" style="padding-left:25px; width:99%"> | |
7 | + <div class="breadcrumb"> | |
8 | + <div class="row"> | |
9 | + <h4 class="text-center text-primary paddingbtm5">Display Image By</h4> | |
10 | + <div class="col-sm-2"> </div> | |
11 | + <div class="col-sm-2"> | |
12 | + <div class="form-group"> | |
13 | + <!--<label></label>--> | |
14 | + <select class="form-control input-sm"> | |
15 | + <option selected>Body Region</option> | |
16 | + <option>All</option> | |
17 | + <option>3</option> | |
18 | + <option>4</option> | |
19 | + <option>5</option> | |
20 | + </select> | |
21 | + </div> | |
22 | + </div> | |
23 | + <div class="col-sm-2"> | |
24 | + <div class="form-group"> | |
25 | + | |
26 | + <select class="form-control input-sm"> | |
27 | + <option selected>Body System</option> | |
28 | + <option>All</option> | |
29 | + <option>2</option> | |
30 | + <option>3</option> | |
31 | + <option>4</option> | |
32 | + <option>5</option> | |
33 | + </select> | |
34 | + </div> | |
35 | + </div> | |
36 | + | |
37 | + <div class="col-sm-2"> | |
38 | + <div class="form-group"> | |
39 | + <select class="form-control input-sm"> | |
40 | + <option selected>Medical Speciality</option> | |
41 | + <option>All</option> | |
42 | + <option>2</option> | |
43 | + <option>3</option> | |
44 | + <option>4</option> | |
45 | + <option>5</option> | |
46 | + </select> | |
47 | + </div> | |
48 | + </div> | |
49 | + <div class="col-sm-3"> | |
50 | + <button class="btn btn-primary btn-sm"><i class="fa fa-search"></i></button> <button class="btn btn-primary btn-sm"><i class="fa fa-eye"></i> Show All</button> | |
51 | + </div> | |
52 | + </div> | |
53 | + </div> | |
54 | + </div> | |
55 | + </div> | |
56 | + <div class="row tab-content" style="padding-left:25px; width:99%"> | |
57 | + <div role="tabpanel" class="tab-pane active" id="grid-view"> | |
58 | + <div class="col-sm-3 col-lg-2"> | |
59 | + <div class="thumbnail"> | |
60 | + <a href="clinical-animations-details.html"> | |
61 | + <img src="~/../content/images/clinical-animations-1.jpg" alt="" title=""> | |
62 | + <div class="caption"> | |
63 | + <p>Blood clotting</p> | |
64 | + </div> | |
65 | + </a> | |
66 | + </div> | |
67 | + </div> | |
68 | + <div class="col-sm-3 col-lg-2"> | |
69 | + <div class="thumbnail"> | |
70 | + <a href="clinical-animations-details.html"> | |
71 | + <img src="~/../content/images/clinical-animations-2.jpg" alt="" title=""> | |
72 | + <div class="caption"> | |
73 | + <p>Blood pressure</p> | |
74 | + </div> | |
75 | + </a> | |
76 | + </div> | |
77 | + </div> | |
78 | + <div class="col-sm-3 col-lg-2"> | |
79 | + <div class="thumbnail"> | |
80 | + <a href="clinical-animations-details.html"> | |
81 | + <img src="~/../content/images/clinical-animations-3.jpg" alt="" title=""> | |
82 | + <div class="caption"> | |
83 | + <p>Brain components</p> | |
84 | + </div> | |
85 | + </a> | |
86 | + </div> | |
87 | + </div> | |
88 | + <div class="col-sm-3 col-lg-2"> | |
89 | + <div class="thumbnail"> | |
90 | + <a href="clinical-animations-details.html"> | |
91 | + <img src="~/../content/images/clinical-animations-4.jpg" alt="" title=""> | |
92 | + <div class="caption"> | |
93 | + <p>Cardiac conduction system</p> | |
94 | + </div> | |
95 | + </a> | |
96 | + </div> | |
97 | + </div> | |
98 | + <div class="col-sm-3 col-lg-2"> | |
99 | + <div class="thumbnail"> | |
100 | + <a href="clinical-animations-details.html"> | |
101 | + <img src="~/../content/images/clinical-animations-5.jpg" alt="" title=""> | |
102 | + <div class="caption"> | |
103 | + <p>Conception - interactive tool</p> | |
104 | + </div> | |
105 | + </a> | |
106 | + </div> | |
107 | + </div> | |
108 | + <div class="col-sm-3 col-lg-2"> | |
109 | + <div class="thumbnail"> | |
110 | + <a href="clinical-animations-details.html"> | |
111 | + <img src="~/../content/images/clinical-animations-6.jpg" alt="" title=""> | |
112 | + <div class="caption"> | |
113 | + <p>Coronary artery bypass graft (CABG)</p> | |
114 | + </div> | |
115 | + </a> | |
116 | + </div> | |
117 | + </div> | |
118 | + <div class="col-sm-3 col-lg-2"> | |
119 | + <div class="thumbnail"> | |
120 | + <a href="clinical-animations-details.html"> | |
121 | + <img src="~/../content/images/clinical-animations-7.jpg" alt="" title=""> | |
122 | + <div class="caption"> | |
123 | + <p>Directional coronary atherectomy (DCA)</p> | |
124 | + </div> | |
125 | + </a> | |
126 | + </div> | |
127 | + </div> | |
128 | + <div class="col-sm-3 col-lg-2"> | |
129 | + <div class="thumbnail"> | |
130 | + <a href="clinical-animations-details.html"> | |
131 | + <img src="~/../content/images/clinical-animations-8.jpg" alt="" title=""> | |
132 | + <div class="caption"> | |
133 | + <p>Egg cell production</p> | |
134 | + </div> | |
135 | + </a> | |
136 | + </div> | |
137 | + </div> | |
138 | + <div class="col-sm-3 col-lg-2"> | |
139 | + <div class="thumbnail"> | |
140 | + <a href="clinical-animations-details.html"> | |
141 | + <img src="~/../content/images/clinical-animations-9.jpg" alt="" title=""> | |
142 | + <div class="caption"> | |
143 | + <p>Electrocardiogram (ECG) - interactive tool</p> | |
144 | + </div> | |
145 | + </a> | |
146 | + </div> | |
147 | + </div> | |
148 | + <div class="col-sm-3 col-lg-2"> | |
149 | + <div class="thumbnail"> | |
150 | + <a href="clinical-animations-details.html"> | |
151 | + <img src="~/../content/images/clinical-animations-10.jpg" alt="" title=""> | |
152 | + <div class="caption"> | |
153 | + <p>Endocrine glands - general overview</p> | |
154 | + </div> | |
155 | + </a> | |
156 | + </div> | |
157 | + </div> | |
158 | + <div class="col-sm-3 col-lg-2"> | |
159 | + <div class="thumbnail"> | |
160 | + <a href="clinical-animations-details.html"> | |
161 | + <img src="~/../content/images/clinical-animations-11.jpg" alt="" title=""> | |
162 | + <div class="caption"> | |
163 | + <p>Enlarged prostate gland (BPH)</p> | |
164 | + </div> | |
165 | + </a> | |
166 | + </div> | |
167 | + </div> | |
168 | + <div class="col-sm-3 col-lg-2"> | |
169 | + <div class="thumbnail"> | |
170 | + <a href="clinical-animations-details.html"> | |
171 | + <img src="~/../content/images/clinical-animations-12.jpg" alt="" title=""> | |
172 | + <div class="caption"> | |
173 | + <p>Fetal development - interactive tool</p> | |
174 | + </div> | |
175 | + </a> | |
176 | + </div> | |
177 | + </div> | |
178 | + | |
179 | + <div class="col-sm-3 col-lg-2"> | |
180 | + <div class="thumbnail"> | |
181 | + <a href="clinical-animations-details.html"> | |
182 | + <img src="~/../content/images/clinical-animations-1.jpg" alt="" title=""> | |
183 | + <div class="caption"> | |
184 | + <p>Blood clotting</p> | |
185 | + </div> | |
186 | + </a> | |
187 | + </div> | |
188 | + </div> | |
189 | + <div class="col-sm-3 col-lg-2"> | |
190 | + <div class="thumbnail"> | |
191 | + <a href="clinical-animations-details.html"> | |
192 | + <img src="~/../content/images/clinical-animations-2.jpg" alt="" title=""> | |
193 | + <div class="caption"> | |
194 | + <p>Blood pressure</p> | |
195 | + </div> | |
196 | + </a> | |
197 | + </div> | |
198 | + </div> | |
199 | + <div class="col-sm-3 col-lg-2"> | |
200 | + <div class="thumbnail"> | |
201 | + <a href="clinical-animations-details.html"> | |
202 | + <img src="~/../content/images/clinical-animations-3.jpg" alt="" title=""> | |
203 | + <div class="caption"> | |
204 | + <p>Brain components</p> | |
205 | + </div> | |
206 | + </a> | |
207 | + </div> | |
208 | + </div> | |
209 | + <div class="col-sm-3 col-lg-2"> | |
210 | + <div class="thumbnail"> | |
211 | + <a href="clinical-animations-details.html"> | |
212 | + <img src="~/../content/images/clinical-animations-4.jpg" alt="" title=""> | |
213 | + <div class="caption"> | |
214 | + <p>Cardiac conduction system</p> | |
215 | + </div> | |
216 | + </a> | |
217 | + </div> | |
218 | + </div> | |
219 | + <div class="col-sm-3 col-lg-2"> | |
220 | + <div class="thumbnail"> | |
221 | + <a href="clinical-animations-details.html"> | |
222 | + <img src="~/../content/images/clinical-animations-5.jpg" alt="" title=""> | |
223 | + <div class="caption"> | |
224 | + <p>Conception - interactive tool</p> | |
225 | + </div> | |
226 | + </a> | |
227 | + </div> | |
228 | + </div> | |
229 | + <div class="col-sm-3 col-lg-2"> | |
230 | + <div class="thumbnail"> | |
231 | + <a href="clinical-animations-details.html"> | |
232 | + <img src="~/../content/images/clinical-animations-6.jpg" alt="" title=""> | |
233 | + <div class="caption"> | |
234 | + <p>Coronary artery bypass graft (CABG)</p> | |
235 | + </div> | |
236 | + </a> | |
237 | + </div> | |
238 | + </div> | |
239 | + <div class="col-sm-3 col-lg-2"> | |
240 | + <div class="thumbnail"> | |
241 | + <a href="clinical-animations-details.html"> | |
242 | + <img src="~/../content/images/clinical-animations-7.jpg" alt="" title=""> | |
243 | + <div class="caption"> | |
244 | + <p>Directional coronary atherectomy (DCA)</p> | |
245 | + </div> | |
246 | + </a> | |
247 | + </div> | |
248 | + </div> | |
249 | + <div class="col-sm-3 col-lg-2"> | |
250 | + <div class="thumbnail"> | |
251 | + <a href="clinical-animations-details.html"> | |
252 | + <img src="~/../content/images/clinical-animations-8.jpg" alt="" title=""> | |
253 | + <div class="caption"> | |
254 | + <p>Egg cell production</p> | |
255 | + </div> | |
256 | + </a> | |
257 | + </div> | |
258 | + </div> | |
259 | + <div class="col-sm-3 col-lg-2"> | |
260 | + <div class="thumbnail"> | |
261 | + <a href="clinical-animations-details.html"> | |
262 | + <img src="~/../content/images/clinical-animations-9.jpg" alt="" title=""> | |
263 | + <div class="caption"> | |
264 | + <p>Electrocardiogram (ECG) - interactive tool</p> | |
265 | + </div> | |
266 | + </a> | |
267 | + </div> | |
268 | + </div> | |
269 | + <div class="col-sm-3 col-lg-2"> | |
270 | + <div class="thumbnail"> | |
271 | + <a href="clinical-animations-details.html"> | |
272 | + <img src="~/../content/images/clinical-animations-10.jpg" alt="" title=""> | |
273 | + <div class="caption"> | |
274 | + <p>Endocrine glands - general overview</p> | |
275 | + </div> | |
276 | + </a> | |
277 | + </div> | |
278 | + </div> | |
279 | + <div class="col-sm-3 col-lg-2"> | |
280 | + <div class="thumbnail"> | |
281 | + <a href="clinical-animations-details.html"> | |
282 | + <img src="~/../content/images/clinical-animations-11.jpg" alt="" title=""> | |
283 | + <div class="caption"> | |
284 | + <p>Enlarged prostate gland (BPH)</p> | |
285 | + </div> | |
286 | + </a> | |
287 | + </div> | |
288 | + </div> | |
289 | + <div class="col-sm-3 col-lg-2"> | |
290 | + <div class="thumbnail"> | |
291 | + <a href="clinical-animations-details.html"> | |
292 | + <img src="~/../content/images/clinical-animations-12.jpg" alt="" title=""> | |
293 | + <div class="caption"> | |
294 | + <p>Fetal development - interactive tool</p> | |
295 | + </div> | |
296 | + </a> | |
297 | + </div> | |
298 | + </div> | |
299 | + </div> | |
300 | + <div role="tabpanel" class="tab-pane" id="list-view"> | |
301 | + <div class="col-sm-12 table-responsive "> | |
302 | + <table class="table table-hover table-condensed bg-white"> | |
303 | + <thead> | |
304 | + <tr class="active"> | |
305 | + <th>Title</th> | |
306 | + <th>Region</th> | |
307 | + <th>System</th> | |
308 | + <th>View</th> | |
309 | + <th>Type</th> | |
310 | + </tr> | |
311 | + </thead> | |
312 | + <tbody> | |
313 | + <tr> | |
314 | + <td>1st & 2nd Intercostal Spaces</td> | |
315 | + <td>Thorax</td> | |
316 | + <td>Cardiovascular, Muscular,</td> | |
317 | + <td>Anterior</td> | |
318 | + <td>Cadaver Photograph</td> | |
319 | + </tr> | |
320 | + <tr> | |
321 | + <td>1st, 3rd, &8th Ribs</td> | |
322 | + <td>Body Wall and Back</td> | |
323 | + <td>Skeletal</td> | |
324 | + <td>Inferior</td> | |
325 | + <td>Cadaver Photograph</td> | |
326 | + </tr> | |
327 | + <tr> | |
328 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
329 | + <td>Abdomen</td> | |
330 | + <td>Cardiovascular, Digestive,</td> | |
331 | + <td>Inferior</td> | |
332 | + <td>Illustration</td> | |
333 | + </tr> | |
334 | + <tr> | |
335 | + <td>1st & 2nd Intercostal Spaces</td> | |
336 | + <td>Thorax</td> | |
337 | + <td>Cardiovascular, Muscular,</td> | |
338 | + <td>Anterior</td> | |
339 | + <td>Cadaver Photograph</td> | |
340 | + </tr> | |
341 | + <tr> | |
342 | + <td>1st, 3rd, &8th Ribs</td> | |
343 | + <td>Body Wall and Back</td> | |
344 | + <td>Skeletal</td> | |
345 | + <td>Inferior</td> | |
346 | + <td>Cadaver Photograph</td> | |
347 | + </tr> | |
348 | + <tr> | |
349 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
350 | + <td>Abdomen</td> | |
351 | + <td>Cardiovascular, Digestive,</td> | |
352 | + <td>Inferior</td> | |
353 | + <td>Illustration</td> | |
354 | + </tr> | |
355 | + <tr> | |
356 | + <td>1st & 2nd Intercostal Spaces</td> | |
357 | + <td>Thorax</td> | |
358 | + <td>Cardiovascular, Muscular,</td> | |
359 | + <td>Anterior</td> | |
360 | + <td>Cadaver Photograph</td> | |
361 | + </tr> | |
362 | + <tr> | |
363 | + <td>1st, 3rd, &8th Ribs</td> | |
364 | + <td>Body Wall and Back</td> | |
365 | + <td>Skeletal</td> | |
366 | + <td>Inferior</td> | |
367 | + <td>Cadaver Photograph</td> | |
368 | + </tr> | |
369 | + <tr> | |
370 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
371 | + <td>Abdomen</td> | |
372 | + <td>Cardiovascular, Digestive,</td> | |
373 | + <td>Inferior</td> | |
374 | + <td>Illustration</td> | |
375 | + </tr> | |
376 | + <tr> | |
377 | + <td>1st & 2nd Intercostal Spaces</td> | |
378 | + <td>Thorax</td> | |
379 | + <td>Cardiovascular, Muscular,</td> | |
380 | + <td>Anterior</td> | |
381 | + <td>Cadaver Photograph</td> | |
382 | + </tr> | |
383 | + <tr> | |
384 | + <td>1st, 3rd, &8th Ribs</td> | |
385 | + <td>Body Wall and Back</td> | |
386 | + <td>Skeletal</td> | |
387 | + <td>Inferior</td> | |
388 | + <td>Cadaver Photograph</td> | |
389 | + </tr> | |
390 | + <tr> | |
391 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
392 | + <td>Abdomen</td> | |
393 | + <td>Cardiovascular, Digestive,</td> | |
394 | + <td>Inferior</td> | |
395 | + <td>Illustration</td> | |
396 | + </tr> | |
397 | + <tr> | |
398 | + <td>1st & 2nd Intercostal Spaces</td> | |
399 | + <td>Thorax</td> | |
400 | + <td>Cardiovascular, Muscular,</td> | |
401 | + <td>Anterior</td> | |
402 | + <td>Cadaver Photograph</td> | |
403 | + </tr> | |
404 | + <tr> | |
405 | + <td>1st, 3rd, &8th Ribs</td> | |
406 | + <td>Body Wall and Back</td> | |
407 | + <td>Skeletal</td> | |
408 | + <td>Inferior</td> | |
409 | + <td>Cadaver Photograph</td> | |
410 | + </tr> | |
411 | + <tr> | |
412 | + <td>Abdomen at L5 Vertebra (Inf)</td> | |
413 | + <td>Abdomen</td> | |
414 | + <td>Cardiovascular, Digestive,</td> | |
415 | + <td>Inferior</td> | |
416 | + <td>Illustration</td> | |
417 | + </tr> | |
418 | + <tr class="active"> | |
419 | + <td colspan="5"> | |
420 | + | |
421 | + <div class="col-sm-3 col-lg-2 no-padding"> | |
422 | + <div class="thumbnail no-margin"> | |
423 | + <a href="atlas-anatomy-detail.html"> | |
424 | + <img src="~/../content/images/clinical-animations-4.jpg" alt="" title=""> | |
425 | + | |
426 | + </a> | |
427 | + </div> | |
428 | + </div> | |
429 | + </td> | |
430 | + </tr> | |
431 | + </tbody> | |
432 | + </table> | |
433 | + </div> | |
434 | + </div> | |
435 | + </div> | |
436 | + </div> | |
437 | +</div> | |
438 | + | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/ci/ci-grid-view.html renamed to 400-SOURCECODE/AIAHTML5.Web/app/views/ci/ci-view.html
1 | -<!--<div ng-app="AIA" ng-controller="CIController"> | |
2 | - <div ng-include="'MainMenu.html'"></div> | |
3 | - <div ng-init="openBodyView()" id="ciView"></div> | |
4 | - <div class=" ciView"> | |
5 | - <div>{{message}}</div> | |
6 | - </div> | |
7 | -</div>--> | |
8 | - | |
9 | -<div class="bodyWrap row "> | |
1 | +<div class="bodyWrap row "> | |
10 | 2 | <div ng-include="'app/widget/MainMenu.html'" /> |
11 | 3 | <div class="main"> |
12 | 4 | <div class="col-sm-12 stickey-area" style="padding-left:25px; width:99%"> |
... | ... | @@ -78,7 +70,6 @@ |
78 | 70 | <button class="btn btn-primary btn-sm"><i class="fa fa-search"></i></button> <button class="btn btn-primary btn-sm"><i class="fa fa-eye"></i> Show All</button> |
79 | 71 | </div> |
80 | 72 | </div> |
81 | - <!--<div>{{message}}</div>--> | |
82 | 73 | </div> |
83 | 74 | </div> |
84 | 75 | <!--</div>--> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/widget/MainMenu.html
... | ... | @@ -17,23 +17,23 @@ |
17 | 17 | <!--Sidebar--> |
18 | 18 | <div class="sidebar pull-left mCustomScrollbar _mCS_1 mCS-autoHide "> |
19 | 19 | <ul class="nav nav-sidebar"> |
20 | - <li><a href="da-view-list" ng-click="showme=false">Dissectible Anatomy</a></li> | |
20 | + <li><a href="da-view-list" ng-click="IsVisible()">Dissectible Anatomy</a></li> | |
21 | 21 | <!--<li><a href="atlas-anatomy.html">Atlas Anatomy</a></li>--> |
22 | - <li><a href="3dA-view" ng-click="showme=true">3D Anatomy</a></li> | |
23 | - <li><a href="ci-grid-view" ng-click="showme=true">Clinical Illustrations</a></li> | |
24 | - <li><a href="clinical-animations.html" ng-click="showme=true">Clinical Animations</a></li> | |
22 | + <li><a href="3dA-view" ng-click="IsVisible()">3D Anatomy</a></li> | |
23 | + <li><a href="ci-view" ng-click="IsVisible()">Clinical Illustrations</a></li> | |
24 | + <li><a href="ca-view" ng-click="IsVisible()">Clinical Animations</a></li> | |
25 | 25 | <li><a href="http://aia5.adam.com/content.aspx?productId=117&ref=www.interactiveanatomy.com&url=aia5.adam.com" target="_blank">Encyclopedia</a></li> |
26 | - <li><a href="curriculum-builder.html" ng-click="showme=false">Curriculum Builder</a></li> | |
27 | - <li><a href="anatomy-tests.html" ng-click="showme=false">Anatomy Tests</a></li> | |
26 | + <li><a href="CBuild-view" ng-click="IsVisible()">Curriculum Builder</a></li> | |
27 | + <li><a href="AnatTest-view" ng-click="IsVisible()">Anatomy Tests</a></li> | |
28 | 28 | <li><a href="http://182.19.10.91:92/IPWeb10/index.aspx" target="_blank">IP 10</a></li> |
29 | - <li><a href="lab-exercises.html" ng-click="showme=false">Lab Exercises</a></li> | |
29 | + <li><a href="LabExerc-view" ng-click="IsVisible()">Lab Exercises</a></li> | |
30 | 30 | <li><a href="http://182.19.10.91:92/IndepthHome.aspx" target="_blank">In-Depth Reports</a></li> |
31 | 31 | <li><a href="http://182.19.10.91:92/CAMHome.aspx" target="_blank">Complementary and Alternative Medicine</a></li> |
32 | - <li><a href="adam-images.html" ng-click="showme=true">A.D.A.M Images</a></li> | |
32 | + <li><a href="ADAMImg-view" ng-click="IsVisible()">A.D.A.M Images</a></li> | |
33 | 33 | <li><a href="http://aia5.adam.com/content.aspx?productId=25&ref=www.interactiveanatomy.com&url=aia5.adam.com" target="_blank">Body Guide</a></li> |
34 | 34 | <li><a href="http://aia5.adam.com/content.aspx?productId=44&pid=44&gid=000001&ref=www.interactiveanatomy.com&url=aia5.adam.com" target="_blank">Symptom Navigator</a></li> |
35 | 35 | <li><a href="http://aia5.adam.com/content.aspx?productId=20&ref=www.interactiveanatomy.com&url=aia5.adam.com" target="_blank">The Wellness Tools</a></li> |
36 | - <li><a href="adamondemand.html" ng-click="showme=true">A.D.A.M OnDemand</a></li> | |
36 | + <li><a href="AOD-view" ng-click="IsVisible()">A.D.A.M OnDemand</a></li> | |
37 | 37 | </ul> |
38 | 38 | </div> |
39 | 39 | ... | ... |
400-SOURCECODE/AIAHTML5.Web/index.html
... | ... | @@ -144,7 +144,13 @@ |
144 | 144 | <script src="content/js/custom/custom.js"></script> |
145 | 145 | <script src="app/controllers/DAController.js"></script> |
146 | 146 | <script src="app/controllers/CIController.js"></script> |
147 | + <script src="app/controllers/CAController.js"></script> | |
147 | 148 | <script src="app/controllers/3dAController.js"></script> |
149 | + <script src="app/controllers/CBuildController.js"></script> | |
150 | + <script src="app/controllers/AnatTestController.js"></script> | |
151 | + <script src="app/controllers/LabExercController.js"></script> | |
152 | + <script src="app/controllers/ADAMImgController.js"></script> | |
153 | + <script src="app/controllers/AODController.js"></script> | |
148 | 154 | <script src="app/controllers/HomeController.js"></script> |
149 | 155 | |
150 | 156 | ... | ... |