Commit fadaa87131dab08ee6c0e85be9d92e134a0e2369

Authored by Amrita Vishnoi
1 parent c309ed1f

Line is inprogress

400-SOURCECODE/AIAHTML5.Web/AIAHTML5.Web.csproj
@@ -55,8 +55,6 @@ @@ -55,8 +55,6 @@
55 <Content Include="app\main\Link.js" /> 55 <Content Include="app\main\Link.js" />
56 <Content Include="app\services\AuthenticationService.js" /> 56 <Content Include="app\services\AuthenticationService.js" />
57 <Content Include="app\services\DataService.js" /> 57 <Content Include="app\services\DataService.js" />
58 - <Content Include="app\services\ModuleService123 - Copy.js" />  
59 - <Content Include="app\services\ModuleServicePromiseCode.js" />  
60 <Content Include="app\services\ModuleService.js" /> 58 <Content Include="app\services\ModuleService.js" />
61 <Content Include="app\utility\BitmapData.js" /> 59 <Content Include="app\utility\BitmapData.js" />
62 <Content Include="app\utility\Matrix.js" /> 60 <Content Include="app\utility\Matrix.js" />
@@ -1762,6 +1760,7 @@ @@ -1762,6 +1760,7 @@
1762 <Content Include="content\images\DA\ethnicity\body-views\9\W\navigator_images\da_oi_99.jpg" /> 1760 <Content Include="content\images\DA\ethnicity\body-views\9\W\navigator_images\da_oi_99.jpg" />
1763 <Content Include="content\images\DA\ethnicity\body-views\9\W\thumbnails\da_tni_3343_W.jpg" /> 1761 <Content Include="content\images\DA\ethnicity\body-views\9\W\thumbnails\da_tni_3343_W.jpg" />
1764 <Content Include="content\images\Highlight-bulb.png" /> 1762 <Content Include="content\images\Highlight-bulb.png" />
  1763 + <Content Include="content\images\img181.png" />
1765 <Content Include="content\images\LE\qz_dat_ca\CA-01.JPG" /> 1764 <Content Include="content\images\LE\qz_dat_ca\CA-01.JPG" />
1766 <Content Include="content\images\LE\qz_dat_ca\CA-01_wt.JPG" /> 1765 <Content Include="content\images\LE\qz_dat_ca\CA-01_wt.JPG" />
1767 <Content Include="content\images\LE\qz_dat_ca\CA-02.JPG" /> 1766 <Content Include="content\images\LE\qz_dat_ca\CA-02.JPG" />
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
@@ -185,10 +185,16 @@ function ($scope, $rootScope, $compile, $http, $log, $location, BodyRegions, Bod @@ -185,10 +185,16 @@ function ($scope, $rootScope, $compile, $http, $log, $location, BodyRegions, Bod
185 debugger; 185 debugger;
186 var pinLength1 = Math.sqrt((638 - 604) * (638 - 604) + (83 - 120) * (83 - 120)); 186 var pinLength1 = Math.sqrt((638 - 604) * (638 - 604) + (83 - 120) * (83 - 120));
187 var pinLength = pinLength1.toPrecision(2); 187 var pinLength = pinLength1.toPrecision(2);
  188 +
  189 + var pinData = '<div class="pin" style="border:1px dashed #000;position:absolute;left:604px;top:120px;width:' + pinLength + 'px;"><div style="border:1px dashed #000;position:absolute;left:604px;"><img src="~/content/images/img181.png"/></div></div>';
  190 +
  191 + // <div class="pin" style="border:1px dashed #000;position:absolute;left:604px;top:120px;width:50px;"><div style="/* border:1px dashed #000; */position:absolute;left: -22px;/* width: 0px; */top: -11px;"><img src="~/content/images/img181.png"></div></div>
  192 +
188 193
189 - var pinData = '<div class="pin" style="border:1px dashed #000;position:absolute;left:604px;top:120px;width:' + pinLength + 'px ><img src="~/content/images/img181.png"/></div></div>'  
190 - var divReference = document.getElementById("imageDiv");  
191 - divReference.appendChild(pinData); 194 + // var divReference = document.getElementById("imageDiv");
  195 + // divReference.appendChild(pinData);
  196 + alert(pinData);
  197 + $("#imageDiv").append(pinData);
192 198
193 } 199 }
194 200