index.js 583 B

1234567891011121314151617181920212223
  1. class Index {
  2. constructor() {
  3. this.examples = new Examples(this);
  4. this.utils = new Utils(this);
  5. this.monacoCreator = new MonacoCreator(this);
  6. this.settingsPG = new SettingsPG(this);
  7. this.menuPG = new MenuPG(this);
  8. this.zipTool = new ZipTool(this);
  9. this.main = new Main(this);
  10. /**
  11. * View split
  12. */
  13. this.splitInstance = Split(['#jsEditor', '#canvasZone'], {minSize: 0});
  14. /**
  15. * Run the main script
  16. */
  17. this.main.initialize();
  18. }
  19. }
  20. index = new Index();