From 175b711b613109f671f2669c9ac719483c4be5da Mon Sep 17 00:00:00 2001 From: shashi.bhushan Date: Wed, 22 May 2019 11:18:55 +0530 Subject: [PATCH] For Bug 26464 --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js index 39fe0f8..07bc6cd 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js @@ -4613,11 +4613,21 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$filter","$ $scope.TransparencyBoxEndY = TransparencyBoxEndY; if ($scope.TransparencyBoxStartX == $scope.TransparencyEndX && $scope.TransparencyBoxStartY == $scope.TransparencyBoxEndY) { - // $('#transparencyScale').css('visibility', 'hidden'); + + //#Bug 26464 + $timeout(function () { + angular.element(document.activeElement).blur(); + }); + } else { if (previewRectangleWidth == 0 && previewRectangleHeight == 0) { + //#Bug 26464 + $timeout(function () { + angular.element(document.activeElement).blur(); + }); + } else { -- libgit2 0.21.4