mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-12 10:22:27 +01:00
Update the core module to implement the style guidelines. Reduce size of init.js - moved filter logic out to it's own config. Rename Menus to menuService
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
(function (app) {
|
|
'use strict';
|
|
|
|
app.registerModule('core');
|
|
app.registerModule('core.routes', ['ui.router']);
|
|
app.registerModule('core.admin', ['core']);
|
|
app.registerModule('core.admin.routes', ['ui.router']);
|
|
}(ApplicationConfiguration));
|