Commit a5504e681733d238a0ed6a24e5f9a6e2cc7519ef

Authored by Amrita Vishnoi
2 parents 212f1588 9cdf37cd

Merge branch 'AAprintpreviewissue' into Develop

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -4303,6 +4303,9 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
4303 4303 $("#printcontainer").css('width', $(window).outerWidth());
4304 4304 $("#printcontainer").css('height', $(window).outerHeight());
4305 4305 }
  4306 + if ($location.url() == "/module-item-view") {
  4307 + $("#aaDetailViewCanvas").css("display", "none");
  4308 + }
4306 4309 }, 520);
4307 4310 }
4308 4311 else {
... ... @@ -4317,6 +4320,9 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
4317 4320 $("#printcontainer").css('width', $(window).outerWidth());
4318 4321 $("#printcontainer").css('height', $(window).outerHeight());
4319 4322 }
  4323 + if ($location.url() == "/module-item-view") {
  4324 + $("#aaDetailViewCanvas").css("display", "none");
  4325 + }
4320 4326 }, 320);
4321 4327 }
4322 4328  
... ... @@ -4473,6 +4479,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
4473 4479 $("#annotationToolBarOptions").removeClass("disableMenuoption");
4474 4480 $("#optionsListManagerTab").removeClass("disableMenuoption");
4475 4481 $('#fileMenuAnchor').parent().removeClass('disableFileMenu');
  4482 + $("#aaDetailViewCanvas").css("display", "block");
4476 4483 if ($('#jsPanel-1').length > 0)
4477 4484 $('#jsPanel-1').remove();
4478 4485 console.log('close');
... ...