Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Services.WebApp.Status/3.3/status.js @ 12962

Last change on this file since 12962 was 12962, checked in by ascheibe, 9 years ago

#2388 merged r12878, r12879, r12883, r12885, r12913, r12914, r12925, r12932, r12961 into stable

File size: 964 bytes
Line 
1var appStatusPlugin = app.registerPlugin('status');
2(function () {
3    var plugin = appStatusPlugin;
4    plugin.dependencies = ['ngResource', 'ui.knob', 'ui.bootstrap', 'tableSort'];
5    plugin.files = [
6        'WebApp/status.css',
7        'WebApp/services/statusService.js',
8        'WebApp/status/statusCtrl.js',
9        'WebApp/history/historyCtrl.js'
10    ];
11    plugin.view = 'WebApp/status/status.cshtml';
12    plugin.controller = 'app.status.ctrl';
13    plugin.routes = [
14        new Route('history', 'WebApp/history/history.cshtml', 'app.status.historyCtrl')
15    ];
16    var menu = app.getMenu();
17    var section = menu.getSection('Menu', 1);
18    section.addEntry({
19        name: 'Status',
20        route: '#/status',
21        icon: 'glyphicon glyphicon-dashboard',
22        entries: [{
23            name: 'History',
24            route: '#/status/history',
25            icon: 'glyphicon glyphicon-calendar'
26        }]
27    });
28})();
29
Note: See TracBrowser for help on using the repository browser.