(message, chatInterface)
| 408 | } |
| 409 | |
| 410 | askUserMessage(message, chatInterface) { |
| 411 | const messageDiv = chatInterface.createIntermediateMessageHtml(message); |
| 412 | chatInterface.bubble.appendChild(messageDiv); |
| 413 | } |
| 414 | |
| 415 | createIntermediateMessageHtml(message) { |
| 416 | const messageDiv = document.createElement('div'); |
nothing calls this directly
no test coverage detected