2021-03-04 19:00:00 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<script src="http://play.workadventure.localhost/iframe_api.js"></script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<button id="sendchat">Send chat message</button>
|
|
|
|
<script>
|
|
|
|
document.getElementById('sendchat').onclick = () => {
|
|
|
|
WA.sendChatMessage('Hello world!', 'Mr Robot');
|
|
|
|
}
|
|
|
|
</script>
|
2021-03-06 15:26:07 +01:00
|
|
|
<div id="chatSent"></div>
|
|
|
|
<script>
|
|
|
|
WA.onChatMessage((message => {
|
|
|
|
const chatDiv = document.createElement('p');
|
|
|
|
chatDiv.innerText = message;
|
|
|
|
document.getElementById('chatSent').append(chatDiv);
|
|
|
|
}));
|
|
|
|
</script>
|
2021-03-04 19:00:00 +01:00
|
|
|
</body>
|
|
|
|
</html>
|