Commit ca4916d6ac2cef3105b78471963a3eefccbb9abf
1 parent
499636be
AOD is integrated.
Showing
3 changed files
with
10 additions
and
2 deletions
400-SOURCECODE/AIAHTML5.API/Web.config
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | <add key="EnableSSL" value="false" /> |
40 | 40 | <add key="Site_Url" value ="//52.2.38.120"/> |
41 | 41 | <add key ="HostAddress" value="10.100.12.13" /> |
42 | - <add key="isUserAuthenticated" value="false"/> | |
42 | + <add key="isUserAuthenticated" value="true"/> | |
43 | 43 | </appSettings> |
44 | 44 | <system.web> |
45 | 45 | <compilation debug="true" targetFramework="4.5" /> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/controllers/LinkController.js
... | ... | @@ -12,7 +12,8 @@ function ($scope, $rootScope, log, pages, $routeParams) { |
12 | 12 | new link("complementary-and-alternate-medicine", "Complementary and Alternative Medicine", "http://182.19.10.91:92/CAMHome.aspx", "100%", "750px"), |
13 | 13 | new link("bodyguide", "Body Guide", "http://aia5.adam.com/content.aspx?productId=25", "100%", "1050px"), |
14 | 14 | new link("symptom-navigator", "Symptom Navigator", "http://aia5.adam.com/content.aspx?productId=44", "100%", "1000px"), |
15 | - new link("wellness-tools", "The Wellness Tools", "http://aia5.adam.com/content.aspx?productId=20", "100%", "1500px") | |
15 | + new link("wellness-tools", "The Wellness Tools", "http://aia5.adam.com/content.aspx?productId=20", "100%", "1500px"), | |
16 | + new link("aod", "A.D.A.M OnDemand", "http://uat.adamondemand.com/Home/AIACatalog?categoriesID=2", "100%", "1500px") | |
16 | 17 | ]; |
17 | 18 | |
18 | 19 | $scope.$on('$viewContentLoaded', function (event) { | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
... | ... | @@ -132,6 +132,13 @@ AIA.constant('pages', [ |
132 | 132 | pageController: 'LinkController' |
133 | 133 | |
134 | 134 | }, |
135 | + { | |
136 | + name: 'A.D.A.M OnDemand', | |
137 | + pageSlug: 'Link/aod', | |
138 | + pageUrl: 'app/views/Link/Link-view.html', | |
139 | + pageController: 'LinkController' | |
140 | + | |
141 | + }, | |
135 | 142 | { //id:18, |
136 | 143 | name: 'home', |
137 | 144 | pageSlug: 'home', | ... | ... |