Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceOverhaul/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/plugins.js

Last change on this file was 12557, checked in by dglaser, 9 years ago

#2394:

HeuristicLab.Services.WebApp-3.3:

  • added angular-tablesort library
  • added sorting functionality to plugins page

HeuristicLab.Services.WebApp.Status-3.3:

  • changed sorting
File size: 681 bytes
Line 
1var appPluginsPlugin = app.registerPlugin('plugins');
2(function () {
3    var plugin = appPluginsPlugin;
4    plugin.dependencies = ['ngResource', 'ui.bootstrap', 'tableSort'];
5    plugin.files = [
6        'pluginsService.js',
7        'pluginsCtrl.js',
8        'pluginsExceptionCtrl.js'
9    ];
10    plugin.view = 'plugins.cshtml';
11    plugin.controller = 'app.plugins.ctrl';
12    plugin.routes = [];
13
14    var menu = app.getMenu();
15    var section = menu.getSection('Administration', -1);
16    section.addEntry({
17        index: 10,
18        name: 'Plugins',
19        route: '#/plugins',
20        icon: 'glyphicon glyphicon-wrench',
21        entries: []
22    });
23})();
Note: See TracBrowser for help on using the repository browser.