Created
May 14, 2017 22:13
-
-
Save Aleyasen/088a8c88effb1edf610672c451aa9451 to your computer and use it in GitHub Desktop.
index.module.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () | |
{ | |
'use strict'; | |
/** | |
* Main module of the Fuse | |
*/ | |
angular | |
.module('fuse', [ | |
// Common 3rd Party Dependencies | |
'uiGmapgoogle-maps', | |
'textAngular', | |
'xeditable', | |
'elasticsearch', | |
// Core | |
'app.core', | |
// Navigation | |
'app.navigation', | |
// Toolbar | |
'app.toolbar', | |
// Quick Panel | |
'app.quick-panel', | |
// Apps | |
'app.dashboards', | |
'app.calendar', | |
'app.e-commerce', | |
'app.mail', | |
'app.chat', | |
'app.file-manager', | |
'app.gantt-chart', | |
'app.scrumboard', | |
'app.todo', | |
'app.contacts', | |
'app.notes', | |
// Pages | |
'app.pages', | |
// User Interface | |
'app.ui', | |
// Components | |
'app.components' | |
]); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment