Commit 427b7a2df80759bb7d58f7593959c12ec962b6df

Authored by unknown
2 parents dcab32ad 8687ecfc

Merge branch 'Develop' of http://52.6.196.163/ADAM/AIAHTML5 into LexiconDataImplementation

150-DOCUMENTATION/AIA-ActionPlan.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines-V1.02.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines-V1.03.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines-V1.05.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines-V1.10-2017-03-08.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines-V1.10-2017-03-15.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines-V1.14.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA-Timelines.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/AIA_DailyScrum.xlsx 0 → 100644
No preview for this file type
150-DOCUMENTATION/Audit/Estimation/Ebix-Estimation Model_Health_Dev-Product Sprint 34(17-April-17).xlsx 0 → 100644
No preview for this file type
400-SOURCECODE/AIAHTML5.Web/app/controllers/LinkController.js
... ... @@ -6,7 +6,7 @@ function ($scope, $rootScope, log, pages, $routeParams) {
6 6 //$rootScope.currentActiveModuleTitle = Modules[10].Name;
7 7 //$rootScope.currentActiveModuleTitle = $routeParams.modname;
8 8 $scope.links = [
9   - new link("encyclopedia", "Encyclopedia", 'http://aia5.adam.com/content.aspx?productId=117', "100%", "750px"),
  9 + new link("encyclopedia", "Encyclopedia", 'https://ssl.adam.com/content.aspx?site=aia5se3.adam.com&login=AIA41842&productId=117', "100%", "750px"),
10 10 new link("IP-10", "IP 10", "http://interactiveanatomy.com/IPWeb10/index.aspx", "100%", "750px"),
11 11 new link("indepth-reports", "InDepth Reports", "https://ssl.adam.com/content.aspx?site=aia5se3.adam.com&login=AIA41842&productId=10", "100%", "4000px"),
12 12 new link("complementary-and-alternate-medicine", "Complementary and Alternative Medicine", "https://ssl.adam.com/content.aspx?site=aia5se3.adam.com&login=AIA41842&productId=107", "100%", "750px"),
... ...
400-SOURCECODE/AIAHTML5.Web/app/main/Link.js
1   -//----------------------------------------------------------------
2   -// Link class
3   -function link(modname,title, objurl, width, min_height) {
4   - this.modname = modname; // Module name (modname = Module Name)
5   - this.title = title;
6   - this.objurl = objurl;
7   - this.objstyle = {
8   - "width": width,
9   - "min-height": min_height
10   - };
  1 +//----------------------------------------------------------------
  2 +// Link class
  3 +function link(modname,title, objurl, width, min_height) {
  4 + this.modname = modname; // Module name (modname = Module Name)
  5 + this.title = title;
  6 + this.objurl = objurl;
  7 + this.objstyle = {
  8 + "width": width,
  9 + //"min-height": min_height
  10 + };
11 11 }
12 12 \ No newline at end of file
... ...
400-SOURCECODE/AIAHTML5.Web/app/views/Link/Link-view.html
1   -<div class="bodyWrap row ">
2   - <div ng-include="'app/widget/MainMenu.html'" />
3   - <div class="main" style="min-height:750px;">
4   - <div id="siteloader" class="col-sm-12">
5   - <!--<object style="width:100%; height:100%" type="text/html" data={{objdata}}></object>-->
6   - <object ng-style="myObj" type="text/html" data={{objdata}}></object>
7   - </div>
8   - </div>
9   -</div>
  1 +<div class="bodyWrap row ">
  2 + <div ng-include="'app/widget/MainMenu.html'" />
  3 + <div class="main" style="min-height:750px;">
  4 + <div id="siteloader" class="col-sm-12">
  5 + <!--<object style="width:100%; height:100%" type="text/html" data={{objdata}}></object>-->
  6 + <object id="externalLink" ng-style="myObj" type="text/html" data={{objdata}}></object>
  7 + </div>
  8 + </div>
  9 +</div>
... ...