Skip to content

Instantly share code, notes, and snippets.

@kkworden
Created December 13, 2018 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkworden/fc74e5d8b1b816d2eb55ebfd747ea265 to your computer and use it in GitHub Desktop.
Save kkworden/fc74e5d8b1b816d2eb55ebfd747ea265 to your computer and use it in GitHub Desktop.
Fixes the chatroom
function getChatroom() {
$.post('/api', { query: '{ messages }' }, function(data) {
var str = '';
for (var message of data.data.messages) {
str += `${message}<br />`;
}
$('#messages').html(str);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment