HomeController.js 1.11 KB
'use strict';

AIA.controller("HomeController", ["$rootScope", "Modules", "$log", "$location", "$timeout",
    function ($rootScope, Modules, $log, $location, $timeout) {

        //$scope.pageToOpen = {
        //    name: 'MainMenu'
        //};
        $rootScope.pageToOpen = 'app/widget/MainMenu.html';
        $rootScope.currentBodyViewId;
        $rootScope.currentActiveModuleTitle = 'Welcome to A.D.A.M. Interactive Anatomy';//Modules[0].Name;
        $rootScope.currentActiveViewTitle;
        $rootScope.cuurentActiveModuleId;
        $rootScope.openModules = [];
        $rootScope.openViews = [];
        $rootScope.currentSlug;
        $rootScope.jsPanelTitle;
        $rootScope.ViewTitle;

        $rootScope.ClearIframe = function () {
            if ($('#daImagePanel') != null)
                $('#daImagePanel').remove();

            $rootScope.hideScrollbar();
        }

        $rootScope.hideScrollbar = function () {
            $(".sidebar").mCustomScrollbar({
                autoHideScrollbar: true,
                //theme:"rounded"
            });
        }
    }]
);