Commit 4a4765f1f9966b75b7c76187116f025e1b08176c

Authored by Amrita Vishnoi
2 parents 1fe005bd 75a5a9e8

commit against merge request 332.

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -2374,13 +2374,13 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
2374 2374 $("#termList").find("option").css({ "background-color": "#ffffff", "color": "#000000" });
2375 2375 $('#termList option[value="' + $rootScope.searchSelectedText + '"]').css({ "background-color": "#3399FF", "color": "#ffffff" });
2376 2376  
2377   -
  2377 + $("#optionsListManagerTab").addClass("active");
2378 2378 }
2379 2379  
2380 2380 $rootScope.CloseListManager = function () {
2381 2381  
2382   - +$("#btnTranparency").removeAttr('disabled', 'disabled');
2383   -
  2382 + $("#btnTranparency").removeAttr('disabled', 'disabled');
  2383 + $("#optionsListManagerTab").removeClass("active");
2384 2384 console.log('close');
2385 2385 $rootScope.disableAnnotationtoolOnListManager = false;
2386 2386 if ($rootScope.MenuModuleName == "DA") {
... ...
400-SOURCECODE/AIAHTML5.Web/app/widget/TopMenu.html
... ... @@ -30,7 +30,7 @@
30 30 <ul class="dropdown-menu">
31 31 <!--<li><a href="#" ng-click="ShowListManager()">List Manager</a></li>-->
32 32  
33   - <li ng-class="disableSubMenu"><a href="#" ng-click="ShowListManager()">List Manager</a></li>
  33 + <li ng-class="disableSubMenu" id="optionsListManagerTab"><a href="#" ng-click="ShowListManager()">List Manager</a></li>
34 34 <!--#7904-->
35 35 <li><a href="#" id="annotationToolBarOptions" ng-click="ShowAnnotationWindow()">Annotation Toolbar</a></li>
36 36  
... ...