Commit cb6a11dce3d858a68ffcbf26581c76d3efaa3c47
Merge branch 'Disable_transparency_Box' into Develop
Showing
1 changed file
with
5 additions
and
3 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... | ... | @@ -4826,9 +4826,9 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
4826 | 4826 | |
4827 | 4827 | $scope.enableHighlight = function () { |
4828 | 4828 | |
4829 | - | |
4829 | + | |
4830 | 4830 | // $("#btnExtract").removeClass("disabled"); |
4831 | - // $("#btnTranparency").removeClass("disabled"); | |
4831 | + $("#btnTranparency").removeClass("disabled"); | |
4832 | 4832 | // $rootScope.isTransparencyBoxActivated = false; |
4833 | 4833 | // $rootScope.isNormalMode = false; |
4834 | 4834 | |
... | ... | @@ -4894,7 +4894,8 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
4894 | 4894 | } |
4895 | 4895 | |
4896 | 4896 | $scope.enableNormalMode = function () { |
4897 | - | |
4897 | + $("#btnTranparency").removeClass("disabled"); | |
4898 | + $rootScope.isNormalMode = false; | |
4898 | 4899 | console.log('enableNormalMode is called'); |
4899 | 4900 | |
4900 | 4901 | |
... | ... | @@ -5066,6 +5067,7 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo |
5066 | 5067 | $rootScope.isLoading = true; |
5067 | 5068 | $('#spinner').css('visibility', 'visible'); |
5068 | 5069 | |
5070 | + | |
5069 | 5071 | $scope.Normal = ""; |
5070 | 5072 | $scope.Extract = ""; |
5071 | 5073 | $scope.Highlight = "LeftButtonsDefaultState"; | ... | ... |