mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-29 10:39:19 +01:00
13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
'use strict';
|
|
|
|
angular.module('core').controller('HeaderController', ['$scope', 'Authentication', 'Menus',
|
|
function($scope, Authentication, Menus) {
|
|
$scope.authentication = Authentication;
|
|
$scope.isCollapsed = false;
|
|
$scope.menu = Menus.getMenu('topbar');
|
|
|
|
$scope.toggleCollapsibleMenu = function() {
|
|
$scope.isCollapsed = !$scope.isCollapsed;
|
|
};
|
|
}
|
|
]); |