Display hints in editor frontend

This commit is contained in:
Maximilian Grundke
2018-03-08 16:20:07 +01:00
parent a228541dd3
commit ccdcc43431
7 changed files with 58 additions and 4 deletions

View File

@@ -43,6 +43,7 @@ CodeOceanEditorWebsocket = {
this.websocket.on('exit', this.handleExitCommand.bind(this));
this.websocket.on('timeout', this.showTimeoutMessage.bind(this));
this.websocket.on('status', this.showStatus.bind(this));
this.websocket.on('hint', this.showHint.bind(this));
},
handleExitCommand: function() {
@@ -53,4 +54,4 @@ CodeOceanEditorWebsocket = {
this.cleanUpTurtle();
this.cleanUpUI();
}
};
};