Skip to content

Instantly share code, notes, and snippets.

@brlafreniere
Last active August 29, 2015 14:18
Show Gist options
  • Save brlafreniere/b6b4ae880b5468658629 to your computer and use it in GitHub Desktop.
Save brlafreniere/b6b4ae880b5468658629 to your computer and use it in GitHub Desktop.
'click #join-room': function (event) {
bootbox.prompt("Enter the name of the room you want to join.", function(roomName) {
if (roomName !== null) {
joinRoom(roomName);
$('#joined-rooms').val(roomName); // this is the line that isn't working.
}
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment