Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/10/15 14:05:24 (9 years ago)
Author:
dglaser
Message:

#2388: Added PluginManager and updated WebApp project

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Status/status.js

    r12419 r12425  
    1 var appStatusModule = app.registerModule('status');
     1var appStatusPlugin = app.registerPlugin('status');
    22(function () {
    3     var module = appStatusModule;
    4     module.dependencies = ['ngResource', 'ui.knob', 'ui.bootstrap'];
    5     module.files = [
     3    var plugin = appStatusPlugin;
     4    plugin.dependencies = ['ngResource', 'ui.knob', 'ui.bootstrap'];
     5    plugin.files = [
    66        'WebApp/status.css',
    77        'WebApp/services/statusService.js',
     
    99        'WebApp/history/historyCtrl.js'
    1010    ];
    11     module.view = 'WebApp/status/status.cshtml';
    12     module.controller = 'app.status.ctrl';
    13     module.routes = [
     11    plugin.view = 'WebApp/status/status.cshtml';
     12    plugin.controller = 'app.status.ctrl';
     13    plugin.routes = [
    1414        new Route('history', 'WebApp/history/history.cshtml', 'app.status.historyCtrl')
    1515    ];
Note: See TracChangeset for help on using the changeset viewer.