Mercurial > prosody-modules
view mod_jsxc/templates/template.js @ 5879:bf5370a40a15
misc/systemd: Fix typo
Is this worth keeping? We also have a .service file in the debian repo?
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 06 Apr 2024 17:51:29 +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); });