Commit 230712e3fae0c4415ef3064590b5b7664cdf723a
1 parent
1d2fae10
this is for bug 10201
Showing
1 changed file
with
3 additions
and
0 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... | ... | @@ -525,6 +525,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic |
525 | 525 | $rootScope.disableMenuoption = " "; |
526 | 526 | $rootScope.disableSubMenu = "disableSubMenu"; |
527 | 527 | $("#annotationToolBarOptions").removeClass("disableSubMenu"); |
528 | + $("#optionsListManagerTab").addClass("disableSubMenu"); | |
528 | 529 | $rootScope.disableFileMenu = " "; |
529 | 530 | } |
530 | 531 | else if ($location.url() == "/clinical-animations-detail") { |
... | ... | @@ -532,10 +533,12 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic |
532 | 533 | $rootScope.disableMenuoption = " "; |
533 | 534 | $rootScope.disableSubMenu = "disableSubMenu"; |
534 | 535 | $("#annotationToolBarOptions").addClass("disableSubMenu"); |
536 | + $("#optionsListManagerTab").addClass("disableSubMenu"); | |
535 | 537 | $rootScope.disableFileMenu = "disableFileMenu"; |
536 | 538 | } |
537 | 539 | else { |
538 | 540 | $("#annotationToolBarOptions").removeClass("disableSubMenu"); |
541 | + $("#optionsListManagerTab").removeClass("disableSubMenu"); | |
539 | 542 | $rootScope.disableMenuannotation = "disableMenuannotation"; |
540 | 543 | $rootScope.disableMenuoption = "disableMenuoption"; |
541 | 544 | $rootScope.disableSubMenu = ""; | ... | ... |