Mercurial > prosody-modules
view mod_jsxc/templates/template.js @ 5352:f6577cdb1d91
mod_muc_rtbl: Use correct occupant object
There is no 'occupant' property for this event.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 17 Apr 2023 14:31:50 +0100 |
parents | 4bdfd83e091f |
children |
line wrap: on
line source
$(function() { let jsxc = new JSXC({ loadConnectionOptions: function(username, password) { return Promise.resolve(%s); } }); let formElement = $('#jsxc_login_form'); let usernameElement = $('#jsxc_username'); let passwordElement = $('#jsxc_password'); jsxc.watchForm(formElement, usernameElement, passwordElement); });