mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-31 03:29:23 +01:00
11 lines
310 B
JavaScript
11 lines
310 B
JavaScript
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"
|
|
}];
|
|
}]); |