diff options
| author | stonedDiscord <stoned@derpymail.org> | 2020-02-12 16:00:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-12 16:00:32 +0100 |
| commit | 3d35a9630bbf31d55fa76f0ffe142bddfcf5bd55 (patch) | |
| tree | 2e947118bb1551eb86248234d86d07b68370b45a /webAO/client.html | |
| parent | 759a4905f6d6bcf59a5d503cc99262285046a5d5 (diff) | |
| parent | c98ea765450cf2d409c3cfab5f8547a1e58248d3 (diff) | |
Merge pull request #44 from AttorneyOnline/new_chatbox
New chatbox
Diffstat (limited to 'webAO/client.html')
| -rw-r--r-- | webAO/client.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/webAO/client.html b/webAO/client.html index 0204560..3c0845b 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -6,7 +6,7 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="client.css?v=1.0.0" id="client_stylesheet"> - <link rel="stylesheet" type="text/css" href="default.css?v=1.0.0" id="client_theme"> + <link rel="stylesheet" type="text/css" href="classic.css?v=1.0.0" id="client_theme"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <link type="text/css" rel="stylesheet" href="golden/css/goldenlayout.css" /> <link type="text/css" rel="stylesheet" @@ -287,10 +287,17 @@ onclick="randomCharacterOOC()">Random Character</button> <br> <br> + <label for="client_themeselect">Theme:</label> + <select id="client_themeselect" name="client_themeselect" onchange="reloadTheme()"> + <option value="classic" selected>Classic</option> + <option value="soj">SoJ</option> + </select> + <br> + <br> <span style="color:red">Only touch these settings if you know what you are doing.</span> <br> <br> - <label for="client_encoding"> Client side chat encoding:</label> + <label for="client_encoding">Client side chat encoding:</label> <select id="client_encoding" name="client_encoding"> <option value="none" selected>None</option> <option value="unicode">Unicode</option> @@ -298,7 +305,7 @@ </select> <br> <br> - <label for="client_decoding"> Client side chat decoding:</label> + <label for="client_decoding">Client side chat decoding:</label> <select id="client_decoding" name="client_decoding"> <option value="none">None</option> <option value="unicode" selected>Unicode</option> |
