Files
meanTorrent/modules/chat/client/chat.client.module.js
Ryan Hutchison b2462ec86c feat(core): Modify core module to implement style guidelines.
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
2016-03-23 15:41:57 -04:00

7 lines
172 B
JavaScript

(function (app) {
'use strict';
app.registerModule('chat', ['core']);
app.registerModule('chat.routes', ['ui.router', 'core.routes']);
}(ApplicationConfiguration));