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/WebApp/plugins/login/login.js

    r12419 r12425  
    1 var appLoginModule = app.registerModule('login');
     1var appLoginPlugin = app.registerPlugin('login');
    22(function () {
    3     var module = appLoginModule;
    4     module.dependencies = ['ngResource', 'ui.bootstrap'];
    5     module.files = [
     3    var plugin = appLoginPlugin;
     4    plugin.dependencies = ['ngResource', 'ui.bootstrap'];
     5    plugin.files = [
    66        'loginCtrl.js',
    77        'login.css'
    88    ];
    9     module.view = 'login.cshtml';
    10     module.controller = appLoginModule.getControllerName();
    11     module.routes = [];
     9    plugin.view = 'login.cshtml';
     10    plugin.controller = 'app.login.ctrl';
     11    plugin.routes = [];
    1212})();
Note: See TracChangeset for help on using the changeset viewer.