view mod_jsxc/templates/template.js @ 5781:cb25d341745f

mod_http_admin_api: Return avatar metadata from get_user_info()
author Matthew Wild <mwild1@gmail.com>
date Thu, 07 Dec 2023 15:30:01 +0000
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);
});