Commit 38ca5649806a15bb37b05765bc59a97ddc6246fc

Authored by unknown
1 parent 65a6a611

Commit Changes

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -4236,6 +4236,17 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
4236 4236 };
4237 4237  
4238 4238 $rootScope.ShowPrintPreviewWindow = function (event) { // Print Preview
  4239 + if ($location.url() == "/module-item-view") {
  4240 + if ($("#hidePinBtn").hasClass("btn-primary")) {
  4241 + $rootScope.isHidePinBtnActiveInPrintPreview = true;
  4242 + }
  4243 + if ($("#selectedPin").hasClass("btn-primary")) {
  4244 + $rootScope.isShowSelectedPinActiveInPrintPrevMode = true;
  4245 + }
  4246 + if ($("#allPinBtn").hasClass("btn-primary")) {
  4247 + $rootScope.isShowAllPinBtnActiveInPrintPreviewMode = true;
  4248 + }
  4249 + }
4239 4250 $(".tools").css("z-index", "1029");
4240 4251 $rootScope.CloseListManager();
4241 4252 $rootScope.CloseAnnotationTool();
... ...