Created
April 16, 2015 04:18
-
-
Save knixeur/a9d8882c8bf536693e3a to your computer and use it in GitHub Desktop.
Join a room by clicking a button using new rooms API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bind on click event on page startup using converse's jQuery | |
converse.env.jQuery(function($) { | |
$('#join-button').on('click', function() { | |
converse.rooms.open('[email protected]'); | |
}); | |
}); | |
converse.initialize({ | |
.... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment