Imported MEAN stack files

This commit is contained in:
Sahat Yalkabov
2013-11-13 12:32:22 -05:00
parent 276673cc47
commit d4b651a5c8
68 changed files with 1819 additions and 3 deletions

13
public/js/controllers/header.js Executable file
View 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;
}]);