Commit 75a5a9e8b90be301c66618c62fbe00e3fa122bb7
1 parent
e50bf730
this is for highlight options menu bug 13687
Showing
2 changed files
with
3 additions
and
3 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -2372,12 +2372,12 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic |
2372 | 2372 | $("#termList").find("option").css({ "background-color": "#ffffff", "color": "#000000" }); |
2373 | 2373 | $('#termList option[value="' + $rootScope.searchSelectedText + '"]').css({ "background-color": "#3399FF", "color": "#ffffff" }); |
2374 | 2374 | |
2375 | - | |
2375 | + $("#optionsListManagerTab").addClass("active"); | |
2376 | 2376 | } |
2377 | 2377 | |
2378 | 2378 | $rootScope.CloseListManager = function () { |
2379 | 2379 | |
2380 | - | |
2380 | + $("#optionsListManagerTab").removeClass("active"); | |
2381 | 2381 | console.log('close'); |
2382 | 2382 | $rootScope.disableAnnotationtoolOnListManager = false; |
2383 | 2383 | 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 | ... | ... |