Commit 6e0e413f94ee865c7b300a537217148132cad85c

Authored by Amrita Vishnoi
2 parents e330e1be 230712e3

Merge remote-tracking branch 'origin/listmanagerdisablecaci' into Develop

400-SOURCECODE/AIAHTML5.Web/app/controllers/HomeController.js
... ... @@ -618,6 +618,7 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
618 618 $rootScope.disableMenuoption = " ";
619 619 $rootScope.disableSubMenu = "disableSubMenu";
620 620 $("#annotationToolBarOptions").removeClass("disableSubMenu");
  621 + $("#optionsListManagerTab").addClass("disableSubMenu");
621 622 $rootScope.disableFileMenu = " ";
622 623 }
623 624 else if ($location.url() == "/module-item-view") {
... ... @@ -633,10 +634,12 @@ function ($rootScope, Modules, $log, $location, $timeout, DataService, Authentic
633 634 $rootScope.disableMenuoption = " ";
634 635 $rootScope.disableSubMenu = "disableSubMenu";
635 636 $("#annotationToolBarOptions").addClass("disableSubMenu");
  637 + $("#optionsListManagerTab").addClass("disableSubMenu");
636 638 $rootScope.disableFileMenu = "disableFileMenu";
637 639 }
638 640 else {
639 641 $("#annotationToolBarOptions").removeClass("disableSubMenu");
  642 + $("#optionsListManagerTab").removeClass("disableSubMenu");
640 643 $rootScope.disableMenuannotation = "disableMenuannotation";
641 644 $rootScope.disableMenuoption = "disableMenuoption";
642 645 $rootScope.disableSubMenu = "";
... ...