Changeset 12557 for trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp
- Timestamp:
- 07/01/15 10:58:26 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/about/about.js
r12546 r12557 9 9 10 10 var menu = app.getMenu(); 11 var section = menu.getSection('Men ü', -1);11 var section = menu.getSection('Menu', -1); 12 12 section.addEntry({ 13 13 index: 10000, -
trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/plugins.cshtml
r12523 r12557 16 16 </div> 17 17 <div class="panel-body"> 18 <table class="table table-hover table-condensed" >18 <table class="table table-hover table-condensed" ts-wrapper> 19 19 <thead> 20 20 <tr> 21 21 <th>#</th> 22 <th >Name</th>23 <th >Assembly</th>24 <th >Last reload</th>22 <th ts-criteria="Name">Name</th> 23 <th ts-criteria ="AssemblyName">Assembly</th> 24 <th ts-criteria="LastReload">Last reload</th> 25 25 <th>Status</th> 26 26 <th></th> 27 27 </tr> 28 28 </thead> 29 <tr ng-repeat="plugin in plugins"> 30 <td>{{$index + 1}}</td> 31 <td>{{plugin.Name}}</td> 32 <td>{{plugin.AssemblyName}}</td> 33 <td>{{plugin.LastReload}}</td> 34 <td> 35 <span ng-hide="plugin.Exception" class="glyphicon glyphicon glyphicon-ok" style="color: green"></span> 36 <span ng-show="plugin.Exception" class="glyphicon glyphicon glyphicon-remove" style="color: darkred" 37 ng-click="open(plugin.Name, plugin.Exception)"></span> 38 </td> 39 <td> 40 <a ng-href="" data-ng-click="reloadPlugin(plugin.Name)">Reload</a> 41 </td> 42 </tr> 29 <tbody> 30 <tr ng-repeat="plugin in plugins" ts-repeat> 31 <td>{{$index + 1}}</td> 32 <td>{{plugin.Name}}</td> 33 <td>{{plugin.AssemblyName}}</td> 34 <td>{{plugin.LastReload}}</td> 35 <td> 36 <span ng-hide="plugin.Exception" class="glyphicon glyphicon glyphicon-ok" style="color: green"></span> 37 <span ng-show="plugin.Exception" class="glyphicon glyphicon glyphicon-remove" style="color: darkred" 38 ng-click="open(plugin.Name, plugin.Exception)"></span> 39 </td> 40 <td> 41 <a ng-href="" data-ng-click="reloadPlugin(plugin.Name)">Reload</a> 42 </td> 43 </tr> 44 </tbody> 43 45 </table> 44 46 </div> -
trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/plugins.js
r12523 r12557 2 2 (function () { 3 3 var plugin = appPluginsPlugin; 4 plugin.dependencies = ['ngResource', 'ui.bootstrap' ];4 plugin.dependencies = ['ngResource', 'ui.bootstrap', 'tableSort']; 5 5 plugin.files = [ 6 6 'pluginsService.js',
Note: See TracChangeset
for help on using the changeset viewer.