Commit 46eaeedb1d930ef23caecfecc01799cd58c39781

Authored by unknown
1 parent 3448008b

Commit Changes

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -3752,7 +3752,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
3752 3752  
3753 3753 $rootScope.disableAnnotationtoolOnListManager = false;
3754 3754 $rootScope.ShowListManager = function () {
3755   -
  3755 +
3756 3756 $rootScope.switchCanvas();
3757 3757 $("#annotationpaintbrushsize").attr("href", "#");
3758 3758 $("#annotationpainteraser").attr("href", "#");
... ... @@ -3782,6 +3782,9 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
3782 3782 $('#termList option[value="' + $rootScope.searchSelectedText + '"]').prop("selected", true);
3783 3783 $("#termList").find("option").css({ "background-color": "#ffffff", "color": "#000000" });
3784 3784 $('#termList option[value="' + $rootScope.searchSelectedText + '"]').css({ "background-color": "#3399FF", "color": "#ffffff" });
  3785 + $rootScope.searchOption = $('#termList option[value="' + $rootScope.searchSelectedText + '"]').attr("id");
  3786 + $("div#backdrop #searchListDivAA #termlistfilter li").find("a").css({ "background-color": "#ffffff", "color": "#000000" });
  3787 + $("div#backdrop #searchListDivAA #termlistfilter li").find("a[id=" + $rootScope.searchOption + "]").css({ "background-color": "#3399FF", "color": "#ffffff" });
3785 3788 }, 1000);
3786 3789 }
3787 3790 else {
... ... @@ -3823,6 +3826,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
3823 3826 $('#bodySystems option[value="' + $rootScope.selectedBodySystemName + '"]').prop("selected", true);
3824 3827 $("#termList").find("option").css({ "background-color": "#ffffff", "color": "#000000" });
3825 3828 $('#termList option[value="' + $rootScope.searchSelectedText + '"]').css({ "background-color": "#3399FF", "color": "#ffffff" });
  3829 +
3826 3830 }, 1000);
3827 3831 }
3828 3832 $("#optionsListManagerTab").addClass("active");
... ...