Commit d1c2940a895e479f3857f0390b6a463293251948

Authored by Mukul Rajput
1 parent 1d2fae10

this is for tha bug 17768

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -514,6 +514,9 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
514 514 return moduleUrl === currentRoute ? 'active' : '';
515 515 }
516 516 $("#annotationToolBarOptions").removeClass("disableMenuoption");
  517 + $("#optionsListManagerTab").removeClass("disableMenuoption");
  518 +
  519 +
517 520 if (($location.url() == "/da-body-view")) {
518 521 $rootScope.disableMenuannotation = " ";
519 522 $rootScope.disableMenuoption = " ";
... ... @@ -3424,10 +3427,11 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
3424 3427 };
3425 3428  
3426 3429 $rootScope.ShowPrintPreviewWindow = function (event) { // Print Preview
3427   -
  3430 + $rootScope.CloseListManager();
3428 3431 $rootScope.CloseAnnotationTool();
3429 3432 $("#annotationButton").parent().addClass("disableMenuannotation");
3430 3433 $("#annotationToolBarOptions").addClass("disableMenuoption");
  3434 + $("#optionsListManagerTab").addClass("disableMenuoption");
3431 3435 $('#dvPrintPreview').css('display', 'block');
3432 3436 html2canvas($("#canvasDiv"), {
3433 3437 onrendered: function (canvas) {
... ... @@ -3608,6 +3612,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
3608 3612 $("#ciImagePanel").css({ "pointer-events": "auto", "opacity": "1" });
3609 3613 $("#annotationButton").parent().removeClass("disableMenuannotation");
3610 3614 $("#annotationToolBarOptions").removeClass("disableMenuoption");
  3615 + $("#optionsListManagerTab").removeClass("disableMenuoption");
3611 3616 $('#fileMenuAnchor').removeClass('disableMenuannotation');
3612 3617 if ($('#jsPanel-1').length > 0)
3613 3618 $('#jsPanel-1').remove();
... ...