Mercurial > prosody-modules
view mod_jsxc/templates/template.js @ 5069:e8342ae5ae12
mod_sasl2_fast: Improve backend profile name and correctly use it everywhere
It didn't match before, and the mechanisms didn't show up.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 14 Oct 2022 16:21:01 +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); });