mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
13 lines
347 B
JavaScript
Executable File
13 lines
347 B
JavaScript
Executable File
angular.module('mean.system').controller('HeaderController', ['$scope', 'Global', function ($scope, Global) {
|
|
$scope.global = Global;
|
|
|
|
$scope.menu = [{
|
|
"title": "Articles",
|
|
"link": "articles"
|
|
}, {
|
|
"title": "Create New Article",
|
|
"link": "articles/create"
|
|
}];
|
|
|
|
$scope.isCollapsed = false;
|
|
}]); |