Commit 821a6f8ec73c2f42344b5110486c134525cd13a0
1 parent
5184b47f
hiding progres icon when nothing is found to extract
Showing
1 changed file
with
10 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -7182,6 +7182,11 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
7182 | 7182 | else if ($rootScope.isHighlightBodyByBodySystem == true || $scope.isbodySystemHighlight == true) { |
7183 | 7183 | $scope.HighlightBodyByTermListForBodySystem(); |
7184 | 7184 | } |
7185 | + else { | |
7186 | + $scope.isLoading = false; | |
7187 | + $('#spinner').css('visibility', 'hidden'); | |
7188 | + | |
7189 | + } | |
7185 | 7190 | } |
7186 | 7191 | } |
7187 | 7192 | }) |
... | ... | @@ -7316,6 +7321,11 @@ AIA.controller("DAController", ["$scope", "$rootScope", "$compile", "$http", "$l |
7316 | 7321 | else if ($rootScope.isHighlightBodyByBodySystem == true || $scope.isbodySystemHighlight == true) { |
7317 | 7322 | $scope.HighlightBodyByTermListForBodySystem(); |
7318 | 7323 | } |
7324 | + else { | |
7325 | + $scope.isLoading = false; | |
7326 | + $('#spinner').css('visibility', 'hidden'); | |
7327 | + | |
7328 | + } | |
7319 | 7329 | } |
7320 | 7330 | |
7321 | 7331 | } | ... | ... |