-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathindex.js
More file actions
19 lines (18 loc) · 1011 Bytes
/
index.js
File metadata and controls
19 lines (18 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import CodeOceanEditorAJAX from './ajax';
import CodeOceanEditor from './editor';
import CodeOceanEditorEvaluation from './evaluation';
import CodeOceanEditorWebsocket from './execution';
import { CodeOceanEditorFlowr, CodeOceanEditorRequestForComments } from './participantsupport';
import CodeOceanEditorPrompt from './prompt';
import CodeOceanEditorSubmissions from './submissions';
import CodeOceanEditorTurtle from './turtle';
// TODO: Import explicitly in Part 3 of the asset migration.
window.CodeOceanEditorAJAX = CodeOceanEditorAJAX;
window.CodeOceanEditor = CodeOceanEditor;
window.CodeOceanEditorEvaluation = CodeOceanEditorEvaluation;
window.CodeOceanEditorWebsocket = CodeOceanEditorWebsocket;
window.CodeOceanEditorFlowr = CodeOceanEditorFlowr;
window.CodeOceanEditorPrompt = CodeOceanEditorPrompt;
window.CodeOceanEditorRequestForComments = CodeOceanEditorRequestForComments;
window.CodeOceanEditorSubmissions = CodeOceanEditorSubmissions;
window.CodeOceanEditorTurtle = CodeOceanEditorTurtle;