mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-15 11:52:23 +01:00
24 lines
620 B
JavaScript
24 lines
620 B
JavaScript
'use strict';
|
|
|
|
angular.module('core').controller('HeaderController', ['$scope', '$state', 'Authentication', 'Menus',
|
|
function($scope, $state, Authentication, Menus) {
|
|
// Expose view variables
|
|
$scope.$state = $state;
|
|
$scope.authentication = Authentication;
|
|
|
|
// Get the topbar menu
|
|
$scope.menu = Menus.getMenu('topbar');
|
|
|
|
// Toggle the menu items
|
|
$scope.isCollapsed = false;
|
|
$scope.toggleCollapsibleMenu = function() {
|
|
$scope.isCollapsed = !$scope.isCollapsed;
|
|
};
|
|
|
|
// Collapsing the menu after navigation
|
|
$scope.$on('$stateChangeSuccess', function() {
|
|
$scope.isCollapsed = false;
|
|
});
|
|
}
|
|
]);
|