Imported MEAN stack files
This commit is contained in:
13
public/js/controllers/header.js
Executable file
13
public/js/controllers/header.js
Executable file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}]);
|
Reference in New Issue
Block a user