Commit f8f53256408a185ac1243f3aabdd44eee04ecfb4

Authored by Mukul Rajput
1 parent c982ce6d

this is disable background of AA when we click print preview

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -4353,6 +4353,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
4353 4353 function OpenJSPanel() {
4354 4354 $("#daImagePanel").css({ "pointer-events": "none", "opacity": ".5" });
4355 4355 $("#ciImagePanel").css({ "pointer-events": "none", "opacity": ".5" });
  4356 + $("#ImagePanel").css({ "pointer-events": "none", "opacity": ".5" });
4356 4357 $.jsPanel({
4357 4358 id: 'jsPanel-1',
4358 4359 selector: '#dvPrintPreview',
... ... @@ -4480,6 +4481,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
4480 4481 $(document).on('click', '#jsPanel-1 .jsglyph-remove', function () {
4481 4482 $("#daImagePanel").css({ "pointer-events": "auto", "opacity": "1" });
4482 4483 $("#ciImagePanel").css({ "pointer-events": "auto", "opacity": "1" });
  4484 + $("#ImagePanel").css({ "pointer-events": "auto", "opacity": "1" });
4483 4485 $("#annotationButton").parent().removeClass("disableMenuannotation");
4484 4486 $("#annotationToolBarOptions").removeClass("disableMenuoption");
4485 4487 $("#optionsListManagerTab").removeClass("disableMenuoption");
... ...