Mercurial > prosody-modules
view mod_jsxc/templates/template.js @ 4940:1a58345d91a9
mod_auth_dovecot: Add luarocks metadata to make automatic packaging work
This subdirectory is not handled by the luarocks packaging in module browser
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 14 May 2022 15:50:44 +0200 |
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); });