Lungo.Boot.js 535 B

1234567891011121314151617181920212223
  1. /**
  2. * Boot for a new LungoJS Application instance
  3. *
  4. * @namespace LUNGO
  5. * @class App
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  9. */
  10. LUNGO.Boot = (function(lng, undefined) {
  11. return function() {
  12. lng.Boot.Resources.start();
  13. lng.Boot.Layout.start();
  14. lng.Boot.Events.start();
  15. lng.Boot.Data.start();
  16. lng.Boot.Section.start();
  17. lng.Boot.Article.start();
  18. lng.Boot.Stats.start();
  19. };
  20. })(LUNGO);