diff options
| author | Qube <qchinious@gmail.com> | 2018-07-18 23:12:29 +0700 |
|---|---|---|
| committer | Qube <qchinious@gmail.com> | 2018-07-18 23:12:29 +0700 |
| commit | 93c2650aac8a12797701d8ca6002db560d7b4529 (patch) | |
| tree | 3d34a989c6715399ea995794fc558aeedb51bd51 /webAO/client.html | |
| parent | 18629bfa646e4b0596a3c1ae9c6a3e3ba58347b9 (diff) | |
Add client side encoding-decoding option (Unicode Escape and UTF-16 Array)
Diffstat (limited to 'webAO/client.html')
| -rw-r--r-- | webAO/client.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/webAO/client.html b/webAO/client.html index 8c54a77..4c34982 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -61,6 +61,21 @@ <template id="client_settings"> <meta name="frame-title" lang="en" content="Settings"> + <br><br> + <label for="client_encoding"> Client Side Chat Encoding:</label> + <select id="client_encoding" name="client_encoding"> + <option value="none">None</option> + <option value="unicode">Unicode</option> + <option value="utf16">UTF-16</option> + </select> + <br><br> + <label for="client_decoding"> Client Side Chat Decoding:</label> + <select id="client_decoding" name="client_decoding"> + <option value="none">None</option> + <option value="unicode">Unicode</option> + <option value="utf16">UTF-16</option> + </select> + <br><br> <div class="slider">Music<input id="client_mvolume" class="long" type="range" min="0" max="100" value="80" onchange="changeMusicVolume()"></div> <div class="slider">SFX <input id="client_svolume" class="long" type="range" min="0" max="100" value="70" onchange="changeSFXVolume()"></div> <div class="slider">Blip <input id="client_bvolume" class="long" type="range" min="0" max="100" value="60" onchange="changeBlipVolume()"></div> |
