From 821a6f8ec73c2f42344b5110486c134525cd13a0 Mon Sep 17 00:00:00 2001 From: nikita Date: Fri, 8 Sep 2017 16:35:31 +0530 Subject: [PATCH] hiding progres icon when nothing is found to extract --- 400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js | 10 ++++++++++ 1 file changed, 10 insertions(+), 0 deletions(-) diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js index 551eb20..5ce919f 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js @@ -7182,6 +7182,11 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l else if ($rootScope.isHighlightBodyByBodySystem == true || $scope.isbodySystemHighlight == true) { $scope.HighlightBodyByTermListForBodySystem(); } + else { + $scope.isLoading = false; + $('#spinner').css('visibility', 'hidden'); + + } } } }) @@ -7316,6 +7321,11 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l else if ($rootScope.isHighlightBodyByBodySystem == true || $scope.isbodySystemHighlight == true) { $scope.HighlightBodyByTermListForBodySystem(); } + else { + $scope.isLoading = false; + $('#spinner').css('visibility', 'hidden'); + + } } } -- libgit2 0.21.4