Commit c7ab877ae222c906e499833d1889d627ad3ad6ae

Authored by Birendra Kumar
1 parent c6073231

committed new fixes in 3D anatomy

400-SOURCECODE/AIAHTML5.Web/Web.config
... ... @@ -39,7 +39,9 @@
39 39 <remove fileExtension=".mp3" />
40 40 <!--<clientCache cacheControlMode="DisableCache" />-->
41 41 <remove fileExtension=".woff" />
  42 + <remove fileExtension=".woff2" />
42 43 <mimeMap fileExtension=".woff" mimeType="application/font-woff" />
  44 + <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
43 45 <mimeMap fileExtension=".mp3" mimeType="audio/mpeg" />
44 46 <mimeMap fileExtension=".vtt" mimeType="text/vtt" />
45 47 <mimeMap fileExtension=".json" mimeType="application/json" />
... ...
400-SOURCECODE/AIAHTML5.Web/app/controllers/3dAController.js
... ... @@ -16,19 +16,14 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
16 16 $rootScope.TheeDWindowData.push(
17 17 {
18 18 'multiwinid': windowviewid,
19   - 'threeDAnatomyData': [],
20   - 'searchCAListViewData': [],
  19 + 'threeDAnatomyData': [],
21 20 'ImagePath': '',
22 21 'moduleName': '',
23 22 'currentViewTitle': '',
24 23 'parentSlugName': '',
25 24 'currentSlug': '',
26   - 'imageId': '',
27   - 'imageName': '',
28   - 'clickedCAVideo': '',
29   - 'clickedCASummary': '',
30   - 'hostedFolderId': '',
31   - 'isTextVisible': true
  25 + 'imageId': ''
  26 +
32 27 });
33 28  
34 29 }
... ... @@ -46,18 +41,13 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location
46 41 {
47 42 'multiwinid': windowviewid,
48 43 'threeDAnatomyData': [],
49   - 'searchCAListViewData': [],
50 44 'ImagePath': '',
51 45 'moduleName': '',
52 46 'currentViewTitle': '',
53 47 'parentSlugName': '',
54 48 'currentSlug': '',
55   - 'imageId': '',
56   - 'imageName': '',
57   - 'clickedCAVideo': '',
58   - 'clickedCASummary': '',
59   - 'hostedFolderId': '',
60   - 'isTextVisible': true
  49 + 'imageId': ''
  50 +
61 51 });
62 52  
63 53 }
... ...