Commit 2245e95a7207ae124b7bd5c4059b3cebda8dad70

Authored by Amrita Vishnoi
1 parent c72ae239

Fixed selected button

400-SOURCECODE/AIAHTML5.Web/app/controllers/DAController.js
... ... @@ -4449,7 +4449,10 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
4449 4449 }
4450 4450  
4451 4451 // unhighlight other
  4452 +
4452 4453 $scope.Normal = "";
  4454 + $scope.Extract = "";
  4455 + $scope.Highlight = "LeftButtonsDefaultState";
4453 4456 }
4454 4457  
4455 4458 $scope.enableNormalMode = function () {
... ... @@ -4480,7 +4483,9 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
4480 4483  
4481 4484 }
4482 4485  
4483   -
  4486 + $scope.Normal = "LeftButtonsDefaultState";
  4487 + $scope.Extract = "";
  4488 + $scope.Highlight = "";
4484 4489 }
4485 4490  
4486 4491 $scope.enableExtract = function () {
... ... @@ -4512,6 +4517,8 @@ function ($scope, $rootScope, $compile, $http, $log, $location, $timeout, DA, Mo
4512 4517  
4513 4518 // unhighlight other
4514 4519 $scope.Normal = "";
  4520 + $scope.Extract = "LeftButtonsDefaultState";
  4521 + $scope.Highlight = "";
4515 4522 }
4516 4523  
4517 4524 $scope.enableShowHideStructureBox = function () {
... ...