16 lines
336 B
JavaScript
Executable File
16 lines
336 B
JavaScript
Executable File
'use strict';
|
|
|
|
angular.module('mystery.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;
|
|
}]);
|