Blame |
Last modification |
View Log
| Download
| RSS feed
'use strict';
MetronicApp.controller('UserProfileController', function($rootScope, $scope, $http, $timeout) {
$scope.$on('$viewContentLoaded', function() {
Metronic.initAjax(); // initialize core components
Layout.setSidebarMenuActiveLink('set', $('#sidebar_menu_link_profile')); // set profile link active in sidebar menu
});
// set sidebar closed and body solid layout mode
$rootScope.settings.layout.pageBodySolid = true;
$rootScope.settings.layout.pageSidebarClosed = true;
});