AnatTestController.js 319 Bytes
AIA.controller("AnatTestController", ["$scope", "$rootScope", "Modules", "$log",
function ($scope, $rootScope, Modules, log) {
    $scope.showme = false;
    $scope.IsVisible = function () {
        $scope.showme = $scope.showme ? false : true;
    }
    $rootScope.currentActiveModuleTitle = Modules[6].Name;
}]

);