flosight-api/public/js/controllers/header.js
2014-01-17 11:46:12 -03:00

19 lines
335 B
JavaScript
Executable File

'use strict';
angular.module('insight.system').controller('HeaderController', ['$scope', 'Global', function ($scope, Global) {
$scope.global = Global;
$scope.menu = [
{
'title': 'Blocks',
'link': 'blocks'
},
{
'title': 'Status',
'link': 'status'
}
];
$scope.isCollapsed = false;
}]);