Commit 86b61bd410f58b67dfcb931adf8c0b3a85038066

Authored by unknown
1 parent 70339905

26655 : iPad and Tablet > DA > Unable to move the body view image in the below scenario.

400-SOURCECODE/AIAHTML5.Web/app/views/da/da-view.html
... ... @@ -288,11 +288,11 @@
288 288 </button>
289 289 </div>
290 290 <div class="btn-group open" id="da-body-nav">
291   - <button type="button" style="padding:0px 0px 10px 1px !important;background-color:rgba(255,255,255,0.0); border:none;" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
  291 + <button type="button" style="padding:0px 0px 10px 1px !important;background-color:rgba(255,255,255,0.0); border:none;" class="btn btn-primary dropdown-toggle btn-sm" id="navigatorBtn">
292 292 <img src="~/../content/images/DA/navigator-view.png" style="height:30px; width:50px" />
293 293 </button>
294 294  
295   - <div class="dropdown-menu active" id="navigatorDiv" style="min-height: initial; min-width: initial; ">
  295 + <div class="dropdown-menu" id="navigatorDiv" style="min-height: initial; min-width: initial; ">
296 296 <div id="containment-wrapper" align="center" style="min-width: initial; height: 119px; ">
297 297 <img id="navimg" alt="" />
298 298 <div id="draggable" class="draggable ui-widget-content dragdivposition" ng-mouseup="ScrollCanvasDiv()">
... ... @@ -431,7 +431,13 @@
431 431 </div>
432 432 <!--<script src="../../../libs/jquery/1.11.4/jquery-ui.js"></script>-->
433 433 <script src="libs/jquery/jquery_plugin/slider-pips/jquery-ui-slider-pips.js"></script>
434   -
  434 +<script>
  435 + $(document).ready(function () {
  436 + $("#navigatorBtn").on('click', function () {
  437 + $("#navigatorDiv").toggle();
  438 + });
  439 + });
  440 +</script>
435 441 <script>
436 442 $(window).load(function () {
437 443 $(".stickey-area").sticky();
... ...