Would you like to:
|
${(()=>html.span(() => user.name))()} Logout |
${ (() => html.input({ id:"name", type: "text", placeholder: "Screen Name", value: user.name, bind: "user.name" }) )() } ${ (() => html.p( "I am over 13 yrs old:", html.label( html.input({ name:"ofAge", type:"radio", title: "13 Years Old Or Over", value: false, checked: user.customData.ofAge==false, bind: "user.customData.ofAge", }),"No"), html.label( html.input({ name:"ofAge", type:"radio", title: "13 Years Old Or Over", value: true, checked: user.customData.ofAge==true, bind: "user.customData.ofAge", }),"Yes") ) )() }
You can install on Android, iOS, or Windows.
Chat Submit Key: ${ html.span( (() => { return [ html.label(html.input({type:"radio",name:"submitShortcut",value:"Ctrl+Enter",checked:user.customData.ui.submitShortcut !== "Enter",bind:"user.customData.ui.submitShortcut"}),"Ctrl+Enter"), html.label(html.input({type:"radio",name:"submitShortcut",value:"Enter",checked:user.customData.ui.submitShortcut === "Enter",bind:"user.customData.ui.submitShortcut"}),"Enter"), ] })() ) }
${(() => html.div({style:"position:relative;left:-1ch"},html.toggleSwitch({name:"darkMode",checked:user.customData.ui.darkMode,bind:"user.customData.ui.darkMode",onclick() { document.body.classList.toggle("dark-mode") }})," Dark Mode"))()}
${(() => html.div({style:"position:relative;left:-1ch"},html.toggleSwitch({name:"displayAvatars",checked:user.customData.ui.displayAvatars !== false,bind:"user.customData.ui.displayAvatars"})," Display Avatars"))()}
${(() => html.div({style:"position:relative;left:-1ch"},html.toggleSwitch({name:"optimizeForSpeed",checked:user.customData.ui.chat?.optimizeForSpeed||false,bind:"user.customData.ui.chat.optimizeForSpeed"})," Optimize For Speed"))()}
By using this application you agree to the privacy policy and general terms & conditions.