flosight-api/public/js/controllers/header.js
2014-01-06 17:54:32 -03:00

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