Files
meanTorrent/public/js/controllers/header.js
2013-09-07 15:36:01 +03:00

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"
}];
}]);