Last change
on this file since 14751 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:
|
File size:
566 bytes
|
Rev | Line | |
---|
[12546] | 1 | var appAboutPlugin = app.registerPlugin('about');
|
---|
| 2 | (function () {
|
---|
| 3 | var plugin = appAboutPlugin;
|
---|
| 4 | plugin.dependencies = ['ngResource', 'ui.bootstrap'];
|
---|
| 5 | plugin.files = ['aboutCtrl.js'];
|
---|
| 6 | plugin.view = 'about.cshtml';
|
---|
| 7 | plugin.controller = 'app.about.ctrl';
|
---|
| 8 | plugin.routes = [];
|
---|
| 9 |
|
---|
| 10 | var menu = app.getMenu();
|
---|
[12557] | 11 | var section = menu.getSection('Menu', -1);
|
---|
[12546] | 12 | section.addEntry({
|
---|
| 13 | index: 10000,
|
---|
| 14 | name: 'About',
|
---|
| 15 | route: '#/about',
|
---|
| 16 | icon: 'glyphicon glyphicon-info-sign',
|
---|
| 17 | entries: []
|
---|
| 18 | });
|
---|
| 19 | })(); |
---|
Note: See
TracBrowser
for help on using the repository browser.