Files
meanTorrent/public/js/controllers/header.js
2013-08-27 12:39:49 +03:00

20 lines
449 B
JavaScript

function HeaderController($scope, $location, Global) {
$scope.global = Global;
$scope.menu = [{
"title": "Articles",
"link": "articles"
}, {
"title": "Create New Article",
"link": "articles/create"
}];
$scope.init = function() {
};
$scope.isSelected = function(item) {
if ($location.path() == "/"+item.link) {
return "active"
} else return ""
}
}