Skip to content

Instantly share code, notes, and snippets.

@Aleyasen
Created May 14, 2017 22:13
Show Gist options
  • Save Aleyasen/088a8c88effb1edf610672c451aa9451 to your computer and use it in GitHub Desktop.
Save Aleyasen/088a8c88effb1edf610672c451aa9451 to your computer and use it in GitHub Desktop.
index.module.js
(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