Commit 96ff1eb815ad271e482ebfd3efd6a66394836c74
1 parent
bdc4f3fc
segregated index file and main menu file
Showing
8 changed files
with
324 additions
and
466 deletions
400-SOURCECODE/AIAHTML5.API/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
No preview for this file type
400-SOURCECODE/AIAHTML5.Web/AIAHTML5.Web.csproj.user
... | ... | @@ -7,7 +7,7 @@ |
7 | 7 | <VisualStudio> |
8 | 8 | <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> |
9 | 9 | <WebProjectProperties> |
10 | - <StartPageUrl>app/views/da/da-body-view-list.html</StartPageUrl> | |
10 | + <StartPageUrl>index.html</StartPageUrl> | |
11 | 11 | <StartAction>SpecificPage</StartAction> |
12 | 12 | <AspNetDebugging>True</AspNetDebugging> |
13 | 13 | <SilverlightDebugging>False</SilverlightDebugging> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/MainPage.html
0 → 100644
1 | +<div class="bodyWrap row"> | |
2 | + | |
3 | + <!--Sidebar--> | |
4 | + <div class="sidebar pull-left"> | |
5 | + <ul class="nav nav-sidebar"> | |
6 | + <li><a href="#da-view-list">Dissectible Anatomy</a></li> | |
7 | + <li><a href="atlas-anatomy.html">Atlas Anatomy</a></li> | |
8 | + <li><a href="3d-anatomy.html">3D Anatomy</a></li> | |
9 | + <li><a href="clinical-illustrations.html">Clinical Illustrations</a></li> | |
10 | + <li><a href="clinical-animations.html">Clinical Animations</a></li> | |
11 | + <li><a href="http://aia5.adam.com/content.aspx?productId=117&ref=www.interactiveanatomy.com&url=aia5.adam.com" target="_blank">Encyclopedia</a></li> | |
12 | + <li><a href="curriculum-builder.html">Curriculum Builder</a></li> | |
13 | + <li><a href="anatomy-tests.html">Anatomy Tests</a></li> | |
14 | + <li><a href="http://182.19.10.91:92/IPWeb10/index.aspx" target="_blank">IP 10</a></li> | |
15 | + <li><a href="lab-exercises.html">Lab Exercises</a></li> | |
16 | + <li><a href="http://182.19.10.91:92/IndepthHome.aspx" target="_blank">In-Depth Reports</a></li> | |
17 | + <li><a href="http://182.19.10.91:92/CAMHome.aspx" target="_blank">Complementary and Alternative Medicine</a></li> | |
18 | + <li><a href="adam-images.html">A.D.A.M Images</a></li> | |
19 | + <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> | |
20 | + <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> | |
21 | + <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> | |
22 | + <li><a href="adamondemand.html">A.D.A.M OnDemand</a></li> | |
23 | + </ul> | |
24 | + </div> | |
25 | + <div class="main"> | |
26 | + <div class="col-sm-12"> | |
27 | + <div ng-view></div> | |
28 | + </div> | |
29 | + </div> | |
30 | +</div> | |
31 | + | |
32 | + | |
33 | + | |
34 | +<script> | |
35 | + $(function () { | |
36 | + $("#slider-range-min-2").slider({ | |
37 | + range: "min", | |
38 | + min: 1, | |
39 | + max: 60, | |
40 | + value: 10, | |
41 | + slide: function (event, ui) { | |
42 | + $("#amount-2").val(ui.value); | |
43 | + } | |
44 | + }); | |
45 | + $("#amount-2").val($("#slider-vertical-2").slider("value")); | |
46 | + | |
47 | + $(function () { | |
48 | + $('[data-toggle="tooltip"]').tooltip(); | |
49 | + }) | |
50 | + }); | |
51 | +</script> | |
52 | +<script> | |
53 | + (function ($) { | |
54 | + $(window).load(function () { | |
55 | + $(".sidebar").mCustomScrollbar({ | |
56 | + autoHideScrollbar: true, | |
57 | + //theme:"rounded" | |
58 | + }); | |
59 | + | |
60 | + }); | |
61 | + })(jQuery); | |
62 | +</script> | |
63 | +<script> | |
64 | + $(function () { | |
65 | + $(".modal").draggable(); | |
66 | + }); | |
67 | +</script> | |
0 | 68 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -8,8 +8,6 @@ AIA.controller("DAController", ["$scope", "$compile", "$http", "$log", "$locatio |
8 | 8 | $scope.selectedGenderBodyViewData = null; |
9 | 9 | $scope.imagePath = ""; |
10 | 10 | |
11 | - | |
12 | - | |
13 | 11 | |
14 | 12 | |
15 | 13 | //get the DA body view list based on selected gender |
... | ... | @@ -84,7 +82,7 @@ AIA.controller("DAController", ["$scope", "$compile", "$http", "$log", "$locatio |
84 | 82 | |
85 | 83 | |
86 | 84 | //load json data for body view |
87 | - $scope.loadData = function () { | |
85 | + $scope.loadBodyViewData = function () { | |
88 | 86 | $http({ method: 'GET', url: 'http://localhost/AIA/content/data/json/da_dat_contentlist.json' }).success(function (data) { |
89 | 87 | |
90 | 88 | $scope.BodyViewData = data; | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
... | ... | @@ -15,7 +15,7 @@ AIA.constant('pages', [ |
15 | 15 | name: 'Dissectible Anatomy Views List', |
16 | 16 | pageSlug: 'da-view-list', |
17 | 17 | pageUrl: 'app/views/da/da-body-view-list.html', |
18 | - pageController: 'DAController' | |
18 | + pageController: 'DAController' | |
19 | 19 | }, |
20 | 20 | { |
21 | 21 | name: 'Dissectible Anatomy Body View', | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/da/da-body-view-list.html
1 | -<!DOCTYPE html> | |
2 | -<html lang="en" ng-cloak ng-app="AIA"> | |
3 | -<head> | |
4 | - <meta charset="utf-8"> | |
5 | - <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
6 | - <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | |
7 | - <title>A.D.A.M. Interactive Anatomy</title> | |
8 | - <link href="../../../themes/default/css/bootstrap/3.3.6/bootstrap.css" rel="stylesheet" /> | |
9 | - <!--<link href="css/bootswatch.css" rel="stylesheet">--> | |
10 | - <link href="../../../content/css/main.css" rel="stylesheet" /> | |
11 | - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
12 | - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,400italic"> | |
1 | + <div ng-init="loadBodyViewData()"> | |
2 | + <!--<div class="main">--> | |
3 | + <div class="col-sm-12"> | |
4 | + <div id="inner-anatomyPage"> | |
13 | 5 | |
14 | - <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | |
15 | - <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | |
16 | - <!--[if lt IE 9]> | |
17 | - <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
18 | - <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
19 | - <![endif]--> | |
20 | - <link href="../../../themes/default/css/bootstrap/3.3.6/jquery.mCustomScrollbar.css" rel="stylesheet" /> | |
21 | - <link href="../../../themes/default/css/bootstrap/3.3.6/jquery-ui.css" rel="stylesheet" /> | |
22 | -</head> | |
23 | -<body ng-controller="DAController"> | |
24 | - <div class="container-fluid "> | |
25 | - <!--Header--> | |
26 | - <nav class="navbar navbar-inverse navbar-fixed-top"> | |
27 | - <div class="container-fluid"> | |
28 | - <!-- Brand and toggle get grouped for better mobile display --> | |
29 | - <div class="navbar-header"> | |
30 | - <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#topFixedNavbar1" aria-expanded="false"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button> | |
31 | - <a class="frameLogo navbar-brand" href="welcome.html"><img src="../../../content/images/logo-main.png" class="img-responsive" alt=""></a> | |
32 | - </div> | |
33 | - <div class="collapse navbar-collapse" id="topFixedNavbar1"> | |
34 | - <ul class="nav navbar-nav toperMenu-spaceleft"> | |
35 | - <li class="dropdown"> | |
36 | - <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">File<span class="caret"></span></a> | |
37 | - <ul class="dropdown-menu"> | |
38 | - <li><a href="#">Open Resources</a></li> | |
39 | - <li><a href="#">Open My Pictures</a></li> | |
40 | - <li><a href="#">Open My Animations</a></li> | |
41 | - <li role="separator" class="divider"></li> | |
42 | - <li><a href="#">Test Creator</a></li> | |
43 | - <li><a href="#">Open Test</a></li> | |
44 | - <li><a href="#">Save Test As</a></li> | |
45 | - <li role="separator" class="divider"></li> | |
46 | - <li><a href="#">New Curriculum</a></li> | |
47 | - <li><a href="#">Open Existing Curriculum</a></li> | |
48 | - <li><a href="#">Save Curriculum As</a></li> | |
49 | - <li role="separator" class="divider"></li> | |
50 | - <li><a href="#">Export Image</a></li> | |
51 | - <li role="separator" class="divider"></li> | |
52 | - <li><a href="#">Print Active Viewer</a></li> | |
53 | - <li><a href="#">Print All Open Viewers</a></li> | |
54 | - <li><a href="#">Print Priview</a></li> | |
55 | - </ul> | |
56 | - </li> | |
57 | - <li><a href="#" data-toggle="modal" data-target=".bs-example-modal-sm">Annotation</a></li> | |
58 | - <li class="dropdown"> | |
59 | - <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Options<span class="caret"></span></a> | |
60 | - <ul class="dropdown-menu"> | |
61 | - <li><a href="#">List Manager</a></li> | |
62 | - <li><a href="#">Annotation Toolbar</a></li> | |
63 | - <li><a href="#">Add to Existing Curriculum</a></li> | |
64 | - <li><a href="#">Settings</a></li> | |
65 | - <li role="separator" class="divider"></li> | |
66 | - <li><a href="#">Lab Exercises PDF</a></li> | |
67 | - </ul> | |
68 | - </li> | |
69 | - <li class="dropdown"> | |
70 | - <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Help<span class="caret"></span></a> | |
71 | - <ul class="dropdown-menu"> | |
72 | - <li><a href="#">Help Topics</a></li> | |
73 | - <li><a href="#">Customer Support</a></li> | |
74 | - <li role="separator" class="divider"></li> | |
75 | - <li><a href="#">About A.D.A.M.</a></li> | |
76 | - </ul> | |
77 | - </li> | |
78 | - <li><a href="#">Admin</a></li> | |
79 | - </ul> | |
80 | - <ul class="nav navbar-nav navbar-right"> | |
81 | - <li class="visible-xs"><a href="index.html">Logout</a></li> | |
82 | - <li class="hidden-xs marginR5" data-toggle="tooltip" data-placement="top" title="Logout"><a href="index.html"><i class="fa fa-power-off"></i></a></li> | |
83 | - </ul> | |
84 | - <!--<form class="navbar-form navbar-right" role="search"> | |
85 | - <div class="input-group"> | |
86 | - <select class="form-control"> | |
87 | - <option selected>----Select----</option> | |
88 | - <option>1</option> | |
89 | - <option>2</option> | |
90 | - <option>3</option> | |
91 | - <option>4</option> | |
92 | - </select> | |
93 | - <span class="input-group-btn"> | |
94 | - <button class="btn btn-success" type="button"><i class="fa fa-search"></i> Search</button> | |
95 | - </span> </div> | |
96 | - </form>--> | |
97 | - <div id="imaginary_container"> | |
98 | - <div class="input-group stylish-input-group paddTop5 hidden-sm"> | |
99 | - <input type="text" class="form-control width120" placeholder="Search"> | |
100 | - <span class="input-group-addon"> | |
101 | - <button type="submit"> | |
102 | - <span class="fa fa-search color-green"></span> | |
103 | - </button> | |
104 | - </span> | |
105 | - </div> | |
106 | - | |
107 | - <div class="visible-sm visible-md pull-right marginTop5"> | |
108 | - <div class="dropdown"> | |
109 | - <button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown"> | |
110 | - <i class="fa fa-search color-white"></i> | |
111 | - </button> | |
112 | - <!--<div class="hidden-xs marginR5 dropdown-toggle marginTop5" id="dropdownMenu1" data-toggle="dropdown" data-placement="top" title="Logout"><a href="index.html"><i class="fa fa-search color-white"></i></a></div>--> | |
113 | - <ul class="dropdown-menu right0" aria-labelledby="dropdownMenu1"> | |
114 | - <li> | |
115 | - <!--<div class="input-group"><input type="text" aria-label="Amount (to the nearest dollar)" class="form-control"> <span class="input-group-addon"><i class="fa fa-search color-green"></i></span> </div>--> | |
116 | - <div class="input-group stylish-input-group "> | |
117 | - <input type="text" class="form-control" placeholder="Search" style="width:100%;"> | |
118 | - <span class="input-group-addon"> | |
119 | - <button type="submit"> | |
120 | - <span class="fa fa-search color-green"></span> | |
121 | - </button> | |
122 | - </span> | |
123 | - </div> | |
124 | - </li> | |
125 | - </ul> | |
126 | - </div> | |
127 | - </div> | |
128 | - </div> | |
129 | - </div> | |
130 | - </div> | |
131 | - </nav> | |
132 | - <!--Body--> | |
133 | - <div class="bodyWrap row"> | |
134 | - <div class="col-sm-12 pageHeading"> | |
135 | - <!--<button type="button" class="btn btn-success pull-left toggleBar btn-sm" data-toggle="tooltip" data-placement="top" title="Show/Hide Sidebar"> <i class="fa fa-bars"></i> </button>--> | |
136 | - <div class=" pull-left toggleBar toggleHeadingButton" data-toggle="tooltip" data-placement="top" title="Show/Hide Sidebar"> <i class="fa fa-bars"></i> </div> | |
137 | - <h4 class="pull-left">Dissectible Anatomy</h4> | |
138 | - <div class="clearfix"></div> | |
139 | - </div> | |
140 | - <!--Sidebar--> | |
141 | - <div class="sidebar pull-left"> | |
142 | - <ul class="nav nav-sidebar"> | |
143 | - <li><a href="dissectible-anatomy.html" class="active">Dissectible Anatomy</a></li> | |
144 | - <li><a href="atlas-anatomy.html">Atlas Anatomy</a></li> | |
145 | - <li><a href="3d-anatomy.html">3D Anatomy</a></li> | |
146 | - <li><a href="clinical-illustrations.html">Clinical Illustrations</a></li> | |
147 | - <li><a href="clinical-animations.html">Clinical Animations</a></li> | |
148 | - <li><a href="http://aia5.adam.com/content.aspx?productId=117&ref=www.interactiveanatomy.com&url=aia5.adam.com" target="_blank">Encyclopedia</a></li> | |
149 | - <li><a href="curriculum-builder.html">Curriculum Builder</a></li> | |
150 | - <li><a href="anatomy-tests.html">Anatomy Tests</a></li> | |
151 | - <li><a href="http://182.19.10.91:92/IPWeb10/index.aspx" target="_blank">IP 10</a></li> | |
152 | - <li><a href="lab-exercises.html">Lab Exercises</a></li> | |
153 | - <li><a href="http://182.19.10.91:92/IndepthHome.aspx" target="_blank">In-Depth Reports</a></li> | |
154 | - <li><a href="http://182.19.10.91:92/CAMHome.aspx" target="_blank">Complementary and Alternative Medicine</a></li> | |
155 | - <li><a href="adam-images.html">A.D.A.M Images</a></li> | |
156 | - <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> | |
157 | - <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> | |
158 | - <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> | |
159 | - <li><a href="adamondemand.html">A.D.A.M OnDemand</a></li> | |
160 | - </ul> | |
161 | - </div> | |
162 | - <!--Main--> | |
163 | - <div ng-init="loadData()"> | |
164 | - <div class="main"> | |
165 | - <div class="col-sm-12"> | |
166 | - <div id="inner-anatomyPage" > | |
167 | - | |
168 | - <!-- Nav tabs --> | |
169 | - <ul class="nav nav-tabs" role="tablist" > | |
170 | - <li role="presentation" id="Male" class="active" ng-click="getDAViewList($event)"><a><i class="fa fa-mars-stroke "></i> Male</a></li> | |
171 | - <li role="presentation" id="Female" ng-click="getDAViewList($event)"><a><i class="fa fa-venus"></i> Female</a></li> | |
172 | - </ul> | |
173 | - <!--<button role="presentation" id="male" class="genderButton"><i class="fa fa-mars-stroke" ng-click="getDAViewList('male'')"></i> Male</button> | |
174 | - <button role="presentation" id="female" class="genderButton" style="background: #383838; border: 0px ;" ng-click="getDAViewList()"><i class="fa fa-venus"></i> Female</button>--> | |
175 | - <!-- Tab panes --> | |
176 | - <div class="tab-content"> | |
177 | - <div role="tabpanel" class="tab-pane active"> | |
178 | - <div class="row" id="bodyViewList"> | |
6 | + <!-- Nav tabs --> | |
7 | + <ul class="nav nav-tabs" role="tablist"> | |
8 | + <li role="presentation" id="Male" class="active" ng-click="getDAViewList($event)"><a><i class="fa fa-mars-stroke "></i> Male</a></li> | |
9 | + <li role="presentation" id="Female" ng-click="getDAViewList($event)"><a><i class="fa fa-venus"></i> Female</a></li> | |
10 | + </ul> | |
11 | + <!-- Tab panes --> | |
12 | + <div class="tab-content"> | |
13 | + <div role="tabpanel" class="tab-pane active"> | |
14 | + <div class="row" id="bodyViewList"> | |
179 | 15 | |
180 | 16 | |
181 | 17 | |
182 | - </div> | |
183 | - </div> | |
184 | - | |
185 | - </div> | |
186 | - </div> | |
187 | - </div> | |
188 | - </div> | |
189 | - </div> | |
190 | - </div> | |
191 | - </div> | |
192 | - | |
193 | - | |
194 | - <!--Annotation Modal--> | |
195 | - <div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" style="z-index:9999;"> | |
196 | - <div class="modal-dialog modal-sm" role="document"> | |
197 | - <div class="modal-content"> | |
198 | - <div class="modal-header annotation-modal-header"> | |
199 | - <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | |
200 | - <h4 class="modal-title" id="myModalLabel">Annotation</h4> | |
201 | - </div> | |
202 | - <div class="modal-body"> | |
203 | - <div class="row"> | |
204 | - <div class="col-sm-12"> | |
205 | - <h5>Mode</h5> | |
206 | - <!--<div class="btn-group" role="group" aria-label="..."> | |
207 | - <button type="button" class="btn btn-primary btn-sm">Identify</button> | |
208 | - <button type="button" class="btn btn-primary btn-sm">Draw</button> | |
209 | - </div>--> | |
210 | - <div class="btn-group btn-group-justified" role="group" aria-label="..."> | |
211 | - <div class="btn-group" role="group"> | |
212 | - <button type="button" class="btn btn-sm btn-success">Identify</button> | |
213 | - </div> | |
214 | - <div class="btn-group" role="group"> | |
215 | - <button type="button" class="btn btn-sm btn-success">Draw</button> | |
216 | - </div> | |
217 | - </div> | |
218 | - | |
219 | - </div> | |
220 | - <img src="../../../content/images/icon-identity.png" /> | |
221 | - <div class="col-sm-12"> | |
222 | - <h5>Tools</h5> | |
223 | - <div class="well well-popup"> | |
224 | - <div class="" role="" aria-label="..."> | |
225 | - <div class="" role="group" align="center"> | |
226 | - <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Select Shapes(S)"><img src="../../../content/images/icon-identity.png" alt="" title=""></button> | |
227 | - <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Draw Pin"><img src="../../../content/images/draw-pin.png" alt="" title=""></button> | |
228 | - <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Draw Arrow"><img src="../../../content/images/draw-arrow.png" alt="" title=""></button> | |
229 | - <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Draw Text"><img src="../../../content/images/draw-text.png" alt="" title=""></button> | |
230 | - </div> | |
231 | - <div class="" role="group" align="center"> | |
232 | - <button type="button" class="btn btn-black btn-xs " data-toggle="tooltip" data-placement="top" title="Draw Line"><img src="../../../content/images/draw-line.png" alt="" title=""></button> | |
233 | - <button type="button" class="btn btn-black btn-xs" data-toggle="tooltip" data-placement="top" title="Draw Rectangle"><img src="../../../content/images/draw-rec.png" alt="" title=""></button> | |
234 | - <button type="button" class="btn btn-black btn-xs" data-toggle="tooltip" data-placement="top" title="Draw Circle"><img src="../../../content/images/draw-cir.png" alt="" title=""></button> | |
235 | - <button type="button" class="btn btn-black btn-xs" data-toggle="tooltip" data-placement="top" title="Draw Polygon"><img src="../../../content/images/draw-poly.png" alt="" title=""></button> | |
236 | - </div> | |
237 | - </div> | |
238 | - </div> | |
239 | - <div class="well-popup well"> | |
240 | - <img src="../../../content/images/blank-shape.jpg" alt="..." class="img-rounded img-responsive"> | |
241 | - </div> | |
242 | - <div class="well well-popup"> | |
243 | - <div class="" role="group" aria-label="..."> | |
244 | - <div> | |
245 | - <button type="button" class="btn btn-primary btn-xs pull-left" data-toggle="tooltip" data-placement="top" title="Paint" style="margin-right:1%;"><i class="fa fa-paint-brush"></i></button> | |
246 | - <button type="button" class="btn btn-primary btn-xs pull-left" data-toggle="tooltip" data-placement="top" title="Erase"><i class="fa fa-eraser"></i></button> | |
247 | - <div class="marginL2 pull-left"><input type="number" id="amount-2" value="25" step="1" style="width:60px;"></div> | |
248 | - <div class="pull-left" style="width:45%; margin-left:2%;"> | |
249 | - <div id="slider-range-min-2"></div> | |
250 | - </div> | |
251 | - <div class="clearfix"></div> | |
252 | - </div> | |
253 | - | |
254 | - | |
255 | - </div> | |
256 | - | |
257 | - | |
258 | - </div> | |
259 | - | |
260 | - </div> | |
261 | 18 | </div> |
262 | 19 | </div> |
263 | 20 | |
264 | 21 | </div> |
265 | 22 | </div> |
266 | 23 | </div> |
267 | - | |
268 | - | |
269 | - <script src="../../../libs/jquery/1.11.3/jquery.min.js"></script> | |
270 | - <script src="../../../libs/jquery/1.11.4/jquery-ui.js"></script> | |
271 | - <script src="../../../libs/jquery/jquery_plugin/jquery.mCustomScrollbar.concat.min.js"></script> | |
272 | - | |
273 | - <script src="../../../themes/default/scripts/bootstrap/3.3.5/bootstrap.js"></script> | |
274 | - | |
275 | - <script src="../../../libs/angular/1.4.9/angular.min.js"></script> | |
276 | - <script src="../../../libs/angular/1.4.9/angular-route.min.js"></script> | |
277 | - <script src="../../../libs/angular/1.4.9/angular-sanitize.min.js"></script> | |
278 | - <script src="../../../content/js/custom/custom.js"></script> | |
279 | - | |
280 | - <script src="../../../libs/jinqJs.js"></script> | |
281 | - <script src="../../main/AIA.js"></script> | |
282 | - <script src="../../services/AuthenticationService.js"></script> | |
283 | - <script src="../../controllers/DAController.js"></script> | |
284 | - | |
24 | + <!--</div>--> | |
25 | +</div> | |
26 | + | |
285 | 27 | <script> |
286 | 28 | $(function () { |
287 | 29 | $("#slider-range-min-2").slider({ |
... | ... | @@ -316,5 +58,3 @@ |
316 | 58 | $(".modal").draggable(); |
317 | 59 | }); |
318 | 60 | </script> |
319 | -</body> | |
320 | -</html> | |
321 | 61 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/index.html
1 | 1 | <!DOCTYPE html> |
2 | -<html lang="en" ng-app="Player"> | |
3 | -<head ng-controller="PlayerController"> | |
2 | +<html lang="en" ng-cloak ng-app="AIA"> | |
3 | +<head> | |
4 | + <!--<base href="/AIA/" />--> | |
4 | 5 | <meta charset="utf-8"> |
5 | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 | - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=Yes"> | |
7 | - <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
8 | - <title>Nutrition Learning Program</title> | |
9 | - <!-- Bootstrap --> | |
10 | - <link href="themes/default/css/bootstrap/3.3.6/bootstrap.css" rel="stylesheet"> | |
11 | - <!-- CUSTOM CSS --> | |
12 | - <link href="themes/default/css/custom/custom.css" rel="stylesheet" /> | |
13 | - <link href="libs/mediaplayer/css/ui-player.css" rel="stylesheet" /> | |
14 | - <!-- END CUSTOM CSS --> | |
7 | + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | |
8 | + <title>A.D.A.M. Interactive Anatomy</title> | |
9 | + | |
10 | + <link href="themes/default/css/bootstrap/3.3.6/bootstrap.css" rel="stylesheet" /> | |
11 | + | |
12 | + | |
13 | + <link href="themes/default/css/bootstrap/3.3.6/main.css" rel="stylesheet" /> | |
14 | + | |
15 | + <link href="themes/default/css/bootstrap/3.3.6/secondeffect.css" rel="stylesheet" /> | |
16 | + | |
17 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | |
18 | + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,400italic"> | |
19 | + | |
20 | + <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | |
21 | + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | |
22 | + <!--[if lt IE 9]> | |
23 | + <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
24 | + <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
25 | + <![endif]--> | |
26 | + <link href="themes/default/css/bootstrap/3.3.6/jquery.mCustomScrollbar.css" rel="stylesheet" /> | |
27 | + | |
28 | + <link href="themes/default/css/bootstrap/3.3.6/jquery-ui.css" rel="stylesheet" /> | |
29 | + | |
15 | 30 | </head> |
16 | -<body ng-cloak> | |
17 | - <div class="preloader"> | |
18 | - <div class="status"> </div> | |
19 | - </div> | |
20 | - <div id="myVideo" ng-controller="PlayerController"> | |
21 | - <div class="container-fluid"> | |
22 | - <div class="row"> | |
23 | - <div class="pink-container"> | |
24 | - <nav class="navbar-fixed-top navbar"> | |
25 | - <div class="container-fluid"> | |
26 | - <div class="navbar-header"> | |
27 | - <button aria-controls="navbar" aria-expanded="false" data-target="#navbar" data-toggle="collapse" class="navbar-toggle collapsed" type="button"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> | |
28 | - <img ng-src="{{course.headerLogo}}"> | |
29 | - </div> | |
30 | - <div class="navbar-collapse collapse" id="navbar"> | |
31 | - <ul class="nav navbar-nav navbar-right"> | |
32 | - <!--<li class="dropdown"> | |
33 | - <a href="" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Marker Tools</a> | |
34 | - <ul class="dropdown-menu" aria-labelledby="dLabel"> | |
35 | - <li><a href="#">Pen</a></li> | |
36 | - <li><a href="#">Highlighter</a></li> | |
37 | - <li><a href="#">Eraser</a></li> | |
38 | - <li class="divider"></li> | |
39 | - <li class="disabled"><a href="#"> Erase all </a></li> | |
40 | - <li class="disabled"><a href="#"> End Drawing </a></li> | |
41 | - </ul> | |
42 | - </li>--> | |
43 | - <li class="dropdown"> | |
44 | - <a href="" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Transcript</a> | |
45 | - <div class=" dropdown-menu"> | |
46 | - <ul class="dropdown-transcript" aria-labelledby="dLabel" ng-bind-html="getActiveTranscript()"></ul> | |
31 | +<body class="no-scroll"> | |
32 | + <div class="container-fluid "> | |
33 | + <!--Header--> | |
34 | + | |
35 | + <nav class="navbar navbar-inverse navbar-fixed-top"> | |
36 | + <div class="container-fluid"> | |
37 | + <!-- Brand and toggle get grouped for better mobile display --> | |
38 | + <div class="navbar-header"> | |
39 | + <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#topFixedNavbar1" aria-expanded="false"> | |
40 | + <span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span> | |
41 | + </button> | |
42 | + <a class="frameLogo navbar-brand" href="welcome.html"><img src="content/images/logo-main.png" class="img-responsive" alt=""></a> | |
43 | + </div> | |
44 | + <div class="collapse navbar-collapse" id="topFixedNavbar1"> | |
45 | + <ul class="nav navbar-nav toperMenu-spaceleft"> | |
46 | + <li class="dropdown"> | |
47 | + <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">File<span class="caret"></span></a> | |
48 | + <ul class="dropdown-menu"> | |
49 | + <li><a href="#">Open Resources</a></li> | |
50 | + <li><a href="#">Open My Pictures</a></li> | |
51 | + <li><a href="#">Open My Animations</a></li> | |
52 | + <li role="separator" class="divider"></li> | |
53 | + <li><a href="#">Test Creator</a></li> | |
54 | + <li><a href="#">Open Test</a></li> | |
55 | + <li><a href="#">Save Test As</a></li> | |
56 | + <li role="separator" class="divider"></li> | |
57 | + <li><a href="#">New Curriculum</a></li> | |
58 | + <li><a href="#">Open Existing Curriculum</a></li> | |
59 | + <li><a href="#">Save Curriculum As</a></li> | |
60 | + <li role="separator" class="divider"></li> | |
61 | + <li><a href="#">Export Image</a></li> | |
62 | + <li role="separator" class="divider"></li> | |
63 | + <li><a href="#">Print Active Viewer</a></li> | |
64 | + <li><a href="#">Print All Open Viewers</a></li> | |
65 | + <li><a href="#">Print Priview</a></li> | |
66 | + </ul> | |
67 | + </li> | |
68 | + <li><a href="#" data-toggle="modal" data-target=".bs-example-modal-sm">Annotation</a></li> | |
69 | + <li class="dropdown"> | |
70 | + <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Options<span class="caret"></span></a> | |
71 | + <ul class="dropdown-menu"> | |
72 | + <li><a href="#">List Manager</a></li> | |
73 | + <li><a href="#">Annotation Toolbar</a></li> | |
74 | + <li><a href="#">Add to Existing Curriculum</a></li> | |
75 | + <li><a href="#">Settings</a></li> | |
76 | + <li role="separator" class="divider"></li> | |
77 | + <li><a href="#">Lab Exercises PDF</a></li> | |
78 | + </ul> | |
79 | + </li> | |
80 | + <li class="dropdown"> | |
81 | + <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Help<span class="caret"></span></a> | |
82 | + <ul class="dropdown-menu"> | |
83 | + <li><a href="#">Help Topics</a></li> | |
84 | + <li><a href="#">Customer Support</a></li> | |
85 | + <li role="separator" class="divider"></li> | |
86 | + <li><a href="#">About A.D.A.M.</a></li> | |
87 | + </ul> | |
88 | + </li> | |
89 | + <li><a href="#">Admin</a></li> | |
90 | + </ul> | |
91 | + <ul class="nav navbar-nav navbar-right"> | |
92 | + <li class="visible-xs"><a href="index.html">Logout</a></li> | |
93 | + <li class="hidden-xs marginR5" data-toggle="tooltip" data-placement="top" title="Logout"><a href="index.html"><i class="fa fa-power-off"></i></a></li> | |
94 | + </ul> | |
95 | + <div id="imaginary_container"> | |
96 | + <div class="input-group stylish-input-group paddTop5 hidden-sm"> | |
97 | + <input type="text" class="form-control width120" placeholder="Search"> | |
98 | + <span class="input-group-addon"> | |
99 | + <button type="submit"> | |
100 | + <span class="fa fa-search color-green"></span> | |
101 | + </button> | |
102 | + </span> | |
103 | + </div> | |
104 | + | |
105 | + <div class="visible-sm visible-md pull-right marginTop5"> | |
106 | + <div class="dropdown"> | |
107 | + <button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown"> | |
108 | + <i class="fa fa-search color-white"></i> | |
109 | + </button> | |
110 | + <!--<div class="hidden-xs marginR5 dropdown-toggle marginTop5" id="dropdownMenu1" data-toggle="dropdown" data-placement="top" title="Logout"><a href="index.html"><i class="fa fa-search color-white"></i></a></div>--> | |
111 | + <ul class="dropdown-menu right0" aria-labelledby="dropdownMenu1"> | |
112 | + <li> | |
113 | + <!--<div class="input-group"><input type="text" aria-label="Amount (to the nearest dollar)" class="form-control"> <span class="input-group-addon"><i class="fa fa-search color-green"></i></span> </div>--> | |
114 | + <div class="input-group stylish-input-group "> | |
115 | + <input type="text" class="form-control" placeholder="Search" style="width:100%;"> | |
116 | + <span class="input-group-addon"> | |
117 | + <button type="submit"> | |
118 | + <span class="fa fa-search color-green"></span> | |
119 | + </button> | |
120 | + </span> | |
47 | 121 | </div> |
48 | 122 | </li> |
49 | 123 | </ul> |
50 | 124 | </div> |
51 | 125 | </div> |
52 | - </nav> | |
53 | - <!--page-content div--> | |
54 | - | |
55 | - <div class="page-content" ng-init="init()"> | |
56 | - <ng-view></ng-view> | |
57 | - | |
58 | - <div class="slide-button visible-xs"> | |
59 | - <a class="prev" href="" ng-click="previous()"><i class="glyphicon glyphicon-menu-left"></i></a> | |
60 | - <a class="next" href="" ng-click="next()"><i class="glyphicon glyphicon-menu-right"></i></a> | |
61 | - </div> | |
62 | 126 | </div> |
63 | - | |
64 | - <div class="clearfix"></div> | |
65 | 127 | </div> |
66 | 128 | </div> |
129 | + </nav> | |
130 | + <div class="bodyWrap row"> | |
131 | + <div class="col-sm-12 pageHeading"> | |
132 | + <!--<button type="button" class="btn btn-success pull-left toggleBar btn-sm" data-toggle="tooltip" data-placement="top" title="Show/Hide Sidebar"> <i class="fa fa-bars"></i> </button>--> | |
133 | + <div class=" pull-left toggleBar toggleHeadingButton" data-toggle="tooltip" data-placement="top" title="Show/Hide Sidebar"> <i class="fa fa-bars"></i> </div> | |
134 | + <h4 class="pull-left">Welcome to A.D.A.M. Interactive Anatomy</h4> | |
135 | + <div class="clearfix"></div> | |
136 | + </div> | |
137 | + <!--Body--> | |
138 | + | |
139 | + <div ng-include="'MainPage.html'" /> | |
140 | + <!-- Footer | |
141 | + <footer> | |
142 | + <div class="container-fluid text-center">Copyright © 2016 Ebix Inc. All rights reserved.</div> | |
143 | + </footer>--> | |
67 | 144 | </div> |
68 | - <!--<video id="player1" src="small.mp4" style="width:100%; height:100%;" class='embed-responsive-item'></video> | |
69 | - <audio id="player1" src="1_wlcome.wav"></audio> | |
70 | - <audio id="player2" src="1_wlcome.wav"></audio>--> | |
71 | - | |
72 | - <div class="videobar"> | |
73 | - <div class="video-player"> | |
74 | - <footer class="footer text-right hidden-xs"> | |
75 | - <div class="copyright" ng-bind-html="course.copyrightNote"></div> | |
76 | - </footer> | |
77 | - <div class="row"> | |
78 | - <div class="col-lg-6 col-md-6 col-sm-8 col-xs-12"> | |
79 | - <div id="control-toggle"> | |
80 | - <table class="table footer-control"> | |
81 | - <tr> | |
82 | - <td width="50"> | |
83 | - <a id="bottom-div" class="btn"> <span class="visible-xs"><i class="glyphicon glyphicon-th-list"></i></span> <span class="hidden-xs">Table of content</span> </a> | |
84 | - <div class="dropdown-bottom" id="backdrop"> | |
85 | - <form class="form-inline"> | |
86 | - <div class="form-group"> | |
87 | - <div class="input-group"> | |
88 | - <!--TODO: Binding for search--> | |
89 | - <input type="text" class="form-control" id="exampleInputAmount" ng-model="searchFilter" ng-change="textChange(searchFilter)" placeholder="Search..."> | |
90 | - <div class="input-group-addon"> | |
91 | - <a class="glyphicon glyphicon-search" ng-hide="isVisible"></a> | |
92 | - <a id="searchclear" class="glyphicon glyphicon-remove" data-ng-click="clearSearch(this)" ng-show="isVisible"></a> | |
93 | - </div> | |
94 | - | |
95 | - </div> | |
96 | - </div> | |
97 | - </form> | |
98 | - <div class="panel-search"> | |
99 | - <div ng-hide="isVisible" class="panel-group" id="accordion" role="tablist" aria-multiselectable="true" ng-repeat="section in course.sections"> | |
100 | - <div class="panel panel-default"> | |
101 | - <div class="panel-heading" role="tab" id="heading{{section.sectionNumber}}"> | |
102 | - <div class="panel-title"> | |
103 | - <div class="media" data-toggle="collapse" data-parent="#accordion" href="#collapse{{section.sectionNumber}}" aria-expanded="true" aria-controls="collapse{{section.sectionNumber}}"> | |
104 | - <div class="media-left"> <img ng-src="{{section.thumbnailImage}}"> </div> | |
105 | - <div class="media-body media-middle"> <a href="" ng-click="jumpToSection(section)">{{section.sectionTitle}}</a> </div> | |
106 | - </div> | |
107 | - </div> | |
108 | - </div> | |
109 | - <div id="collapse{{section.sectionNumber}}" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading{{section.sectionNumber}}"> | |
110 | - <div class="panel-body" ng-repeat="slide in section.slides"> | |
111 | - <div class="media"> | |
112 | - <div class="media-left"> <img ng-src="{{slide.thumbnailImage}}"> </div> | |
113 | - <div class="media-body media-middle"> <a href="" ng-click="jumpToSlide(slide, $index, $parent.$index)">{{slide.slideTitle}}</a> </div> | |
114 | - </div> | |
115 | - </div> | |
116 | - </div> | |
117 | - </div> | |
118 | - </div> | |
119 | - <!-- SEARCH LIST --> | |
120 | - <div class="search-list" ng-show="isVisible"> | |
121 | - <h3>Search Results:</h3> | |
122 | - <ul ng-repeat="section in course.sections"> | |
123 | - <li ng-repeat="slide in section.slides | filter:{searchText: searchFilter}:false"> | |
124 | - <a href="" ng-click="jumpToSlide(slide, (slide.id - 1), $parent.$index)">{{ slide.searchText | limitTo: 25 }}{{slide.searchText.length > 25 ? '...' : ''}}</a> | |
125 | - </li> | |
126 | - </ul> | |
127 | - </div> | |
128 | - <!-- END SEARCH LIST --> | |
129 | - </div> | |
130 | - </div> | |
131 | - </td> | |
132 | - <td class="play text-center" width="50"><a ng-hide="currentAudioPaused" href="javascript:void(0);" id="iplay" ng-click="pauseAudio()"><i class="glyphicon glyphicon-play" ng-hide="currentAudioPaused"></i></a><a ng-show="currentAudioPaused" href="javascript:void(0);" ng-click="playAudio()" id="ipause"><i class="glyphicon glyphicon-pause" ng-show="currentAudioPaused"></i></a></td> | |
133 | - <td style="position:relative;" class="progress-hide" id="player-progress"> | |
134 | - <div class="progress-level progress-level-l"></div> | |
135 | - <div class="slide-progress">{{getCurrentSlideNumber(activeSectionIndex, activeSlideIndex)}}/{{numberOfSlides}}</div> | |
136 | - <div class="play-time-left play-time-left-l">{{ currentTime() | date:'mm:ss':'+0000' }} </div> | |
137 | - <span class="seprator">/</span> | |
138 | - <div class="play-time-right play-time-right-l">{{ timeLeft() | date:'mm:ss':'+0000' }}</div> | |
139 | - <div class="progress progress-l" id="progress1"> | |
140 | - <div class="progress-bar" role="progressbar" aria-valuemin="50"> </div> | |
141 | - </div> | |
142 | - </td> | |
143 | - <td width="20" style="position:relative;"> | |
144 | - <div class="hide-volume"> | |
145 | - <div id="slider-vertical"></div> | |
146 | - </div> | |
147 | - <a href="#" class="volume-control play"><i class="glyphicon glyphicon-volume-up "></i></a> | |
148 | - </td> | |
149 | - <td class="play hidden-xs hidden-sm" width="10"><a href="javascript:void(0);" onclick="javascript: FullScreenMode();"><i class="glyphicon glyphicon-fullscreen"></i></a></td> | |
150 | - <!-- <td class="visible-xs" width="125" align="right"> | |
151 | - | |
152 | - </td>--> | |
153 | - </tr> | |
154 | - </table> | |
145 | + </div>> | |
146 | + | |
147 | + <!--Annotation Modal--> | |
148 | + <div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" style="z-index:9999;"> | |
149 | + <div class="modal-dialog modal-sm" role="document"> | |
150 | + <div class="modal-content"> | |
151 | + <div class="modal-header annotation-modal-header"> | |
152 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> | |
153 | + <h4 class="modal-title" id="myModalLabel">Annotation</h4> | |
154 | + </div> | |
155 | + <div class="modal-body"> | |
156 | + <div class="row"> | |
157 | + <div class="col-sm-12"> | |
158 | + <h5>Mode</h5> | |
159 | + <!--<div class="btn-group" role="group" aria-label="..."> | |
160 | + <button type="button" class="btn btn-primary btn-sm">Identify</button> | |
161 | + <button type="button" class="btn btn-primary btn-sm">Draw</button> | |
162 | + </div>--> | |
163 | + <div class="btn-group btn-group-justified" role="group" aria-label="..."> | |
164 | + <div class="btn-group" role="group"> | |
165 | + <button type="button" class="btn btn-sm btn-success">Identify</button> | |
166 | + </div> | |
167 | + <div class="btn-group" role="group"> | |
168 | + <button type="button" class="btn btn-sm btn-success">Draw</button> | |
169 | + </div> | |
170 | + </div> | |
171 | + | |
155 | 172 | </div> |
156 | - </div> | |
157 | - <div class="col-lg-6 col-md-6 col-sm-4 col-xs-12 hidden-xs"> | |
158 | - <div class="slide-button hidden-xs"> | |
159 | - <a class="prev" href="" ng-click="previous()">Prev</a> | |
160 | - <a class="next" href="" ng-click="next()">Next</a> | |
173 | + <div class="col-sm-12"> | |
174 | + <h5>Tools</h5> | |
175 | + <div class="well well-popup"> | |
176 | + <div class="" role="" aria-label="..."> | |
177 | + <div class="" role="group" align="center"> | |
178 | + <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Select Shapes(S)"><img src="content/images/icon-identity.png" alt="" title=""></button> | |
179 | + <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Draw Pin"><img src="content/images/draw-pin.png" alt="" title=""></button> | |
180 | + <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Draw Arrow"><img src="content/images/draw-arrow.png" alt="" title=""></button> | |
181 | + <button type="button" class="btn btn-black btn-xs mrgnBtm5" data-toggle="tooltip" data-placement="top" title="Draw Text"><img src="content/images/draw-text.png" alt="" title=""></button> | |
182 | + </div> | |
183 | + <div class="" role="group" align="center"> | |
184 | + <button type="button" class="btn btn-black btn-xs " data-toggle="tooltip" data-placement="top" title="Draw Line"><img src="content/images/draw-line.png" alt="" title=""></button> | |
185 | + <button type="button" class="btn btn-black btn-xs" data-toggle="tooltip" data-placement="top" title="Draw Rectangle"><img src="content/images/draw-rec.png" alt="" title=""></button> | |
186 | + <button type="button" class="btn btn-black btn-xs" data-toggle="tooltip" data-placement="top" title="Draw Circle"><img src="content/images/draw-cir.png" alt="" title=""></button> | |
187 | + <button type="button" class="btn btn-black btn-xs" data-toggle="tooltip" data-placement="top" title="Draw Polygon"><img src="content/images/draw-poly.png" alt="" title=""></button> | |
188 | + </div> | |
189 | + </div> | |
190 | + </div> | |
191 | + <div class="well-popup well"> | |
192 | + <img src="content/images/blank-shape.jpg" alt="..." class="img-rounded img-responsive"> | |
193 | + </div> | |
194 | + <div class="well well-popup"> | |
195 | + <div class="" role="group" aria-label="..."> | |
196 | + <div> | |
197 | + <button type="button" class="btn btn-primary btn-xs pull-left" data-toggle="tooltip" data-placement="top" title="Paint" style="margin-right:1%;"><i class="fa fa-paint-brush"></i></button> | |
198 | + <button type="button" class="btn btn-primary btn-xs pull-left" data-toggle="tooltip" data-placement="top" title="Erase"><i class="fa fa-eraser"></i></button> | |
199 | + <div class="marginL2 pull-left"><input type="number" id="amount-2" value="25" step="1" style="width:60px;"></div> | |
200 | + <div class="pull-left" style="width:45%; margin-left:2%;"> | |
201 | + <div id="slider-range-min-2"></div> | |
202 | + </div> | |
203 | + <div class="clearfix"></div> | |
204 | + </div> | |
205 | + | |
206 | + | |
207 | + </div> | |
208 | + | |
209 | + | |
210 | + </div> | |
211 | + | |
161 | 212 | </div> |
162 | 213 | </div> |
163 | 214 | </div> |
215 | + | |
164 | 216 | </div> |
165 | 217 | </div> |
166 | - | |
167 | 218 | </div> |
168 | 219 | |
169 | - <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | |
170 | 220 | <script src="libs/jquery/1.11.3/jquery.min.js"></script> |
171 | - <script src="themes/default/scripts/bootstrap/3.3.6/bootstrap.min.js"></script> | |
221 | + <script src="libs/jquery/1.11.4/jquery-ui.js"></script> | |
222 | + <script src="libs/jquery/jquery_plugin/jquery.mCustomScrollbar.concat.min.js"></script> | |
223 | + <script src="themes/default/scripts/bootstrap/3.3.5/bootstrap.js"></script> | |
224 | + | |
172 | 225 | <script src="libs/angular/1.4.9/angular.min.js"></script> |
173 | - <script src="libs/angular/1.4.9/angular-sanitize.min.js"></script> | |
174 | 226 | <script src="libs/angular/1.4.9/angular-route.min.js"></script> |
175 | - <script src="libs/videogular/videogular.min.js"></script> | |
176 | - <script src="libs/videogular/vg-controls.min.js"></script> | |
177 | - <script src="app/main/Player.js"></script> | |
178 | - <script src="app/controllers/PlayerController.js"></script> | |
227 | + <script src="libs/angular/1.4.9/angular-sanitize.min.js"></script> | |
228 | + <script src="content/js/custom/custom.js"></script> | |
229 | + <script src="libs/jinqJs.js"></script> | |
230 | + | |
231 | + <script src="app/main/AIA.js"></script> | |
232 | + | |
233 | + <script src="content/js/custom/custom.js"></script> | |
234 | + <script src="app/controllers/DAController.js"></script> | |
179 | 235 | |
180 | 236 | <script> |
181 | - $('.carousel').carousel({ | |
182 | - interval: false | |
237 | + $(function () { | |
238 | + $("#slider-range-min-2").slider({ | |
239 | + range: "min", | |
240 | + min: 1, | |
241 | + max: 60, | |
242 | + value: 10, | |
243 | + slide: function (event, ui) { | |
244 | + $("#amount-2").val(ui.value); | |
245 | + } | |
246 | + }); | |
247 | + $("#amount-2").val($("#slider-vertical-2").slider("value")); | |
248 | + | |
249 | + $(function () { | |
250 | + $('[data-toggle="tooltip"]').tooltip(); | |
251 | + }) | |
183 | 252 | }); |
184 | 253 | </script> |
185 | 254 | <script> |
186 | - // makes sure the whole site is loaded | |
187 | - | |
188 | - jQuery(window).load(function () { | |
189 | - | |
255 | + (function ($) { | |
256 | + $(window).load(function () { | |
257 | + $(".sidebar").mCustomScrollbar({ | |
258 | + autoHideScrollbar: true, | |
259 | + //theme:"rounded" | |
260 | + }); | |
190 | 261 | |
191 | - | |
192 | - // will first fade out the loading animation | |
193 | - | |
194 | - jQuery(".status").fadeOut(); | |
195 | - | |
196 | - // will fade out the whole DIV that covers the website. | |
197 | - | |
198 | - jQuery(".preloader").delay(1000).fadeOut("slow"); | |
199 | - | |
200 | - }) | |
262 | + }); | |
263 | + })(jQuery); | |
201 | 264 | </script> |
202 | 265 | <script> |
203 | - //Table of Contents toggle | |
204 | - $("#bottom-div").click(function (e) { | |
205 | - e.stopPropagation() | |
206 | - $(".dropdown-bottom").show(); | |
207 | - }); | |
208 | - $(document).mouseup(function (e) { | |
209 | - var container = $("#backdrop"); | |
210 | - | |
211 | - if (!container.is(e.target) // if the target of the click isn't the container... | |
212 | - && container.has(e.target).length === 0) // ... nor a descendant of the container | |
213 | - { | |
214 | - container.hide(); | |
215 | - } | |
266 | + $(function () { | |
267 | + $(".modal").draggable(); | |
216 | 268 | }); |
217 | 269 | </script> |
218 | 270 | </body> |
219 | -</html> | |
271 | +</html> | |
220 | 272 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/login.html
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | + <!--<base href="/AIA/" />--> | |
4 | 5 | <meta charset="utf-8"> |
5 | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 | 7 | <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> |
... | ... | @@ -9,7 +10,7 @@ |
9 | 10 | |
10 | 11 | <link href="themes/default/css/bootstrap/3.3.6/bootstrap.css" rel="stylesheet" /> |
11 | 12 | <!--NOT AVAILABLE IN PROTOTYPE--> |
12 | -<link href="css/bootswatch.css" rel="stylesheet"> | |
13 | +<!--<link href="css/bootswatch.css" rel="stylesheet">--> | |
13 | 14 | <link href="content/css/main.css" rel="stylesheet" /> |
14 | 15 | <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,400italic"> |
15 | 16 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> | ... | ... |