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