insight-ui-zcash/public/js/controllers/header.js

19 lines
335 B
JavaScript
Executable File

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