mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-24 16:22:34 +00:00
* a * Update code/modules/goonchat/browserassets/js/browserOutput.js Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * Update html/changelogs/DreamySkrell-chatmessagelimit11112.yml Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * Update code/modules/goonchat/browserassets/js/browserOutput.js Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> * b * whitespace... * Update code/modules/goonchat/browserassets/js/browserOutput.js Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> --------- Co-authored-by: DreamySkrell <> Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
73 lines
3.6 KiB
HTML
73 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Chat</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<link rel="stylesheet" type="text/css" href="font-awesome.css" />
|
|
<link id="sheetofstyles" rel="stylesheet" type="text/css" href="browserOutput_white.css" />
|
|
<link rel="stylesheet" type="text/css" href="spritesheet_chat.css" />
|
|
<script type="text/javascript" src="jquery.min.js"></script>
|
|
<script type="text/javascript" src="json2.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="loading">
|
|
<i class="fas fa-spinner fa-2x"></i>
|
|
<div>
|
|
Loading...<br><br>
|
|
If this takes longer than 30 seconds, it will automatically reload a maximum of 5 times.<br>
|
|
If it <b>still</b> doesn't work, use the bug report button at the top right of the window.
|
|
</div>
|
|
</div>
|
|
<div id="messages">
|
|
|
|
</div>
|
|
<div id="userBar" style="display: none;">
|
|
<div id="ping">
|
|
<i class="fas fa-circle" id="pingDot"></i>
|
|
<span class="ms" id="pingMs">--ms</span>
|
|
</div>
|
|
<div id="theme">
|
|
<a href="#" class="subCell toggle" id="toggleTheme" title="Theme"><i class="fas fa-adjust"></i></a>
|
|
</div>
|
|
<div id="font">
|
|
<a href="#" class="subCell toggle" id="toggleFont" title="Font"><i class="fas fa-font"></i></a>
|
|
</div>
|
|
<div id="options">
|
|
<a href="#" class="subCell toggle" id="toggleOptions" title="Options"><i class="fas fa-cog"></i></a>
|
|
</div>
|
|
<div class="sub" id="subTheme">
|
|
<a href="#" class="subCell topCell" id="setWhiteTheme">
|
|
<span>Set White Theme</span>
|
|
<i class="fas fa-adjust"></i>
|
|
</a>
|
|
|
|
<a href="#" class="subCell" id="setDarkTheme">
|
|
<span>Set Dark Theme</span>
|
|
<i class="fas fa-adjust"></i>
|
|
</a>
|
|
</div>
|
|
<div class="sub" id="subOptions">
|
|
<a href="#" class="subCell decreaseFont topCell" id="decreaseFont"><span>Decrease font size</span> <i class="fas fa-font"></i></a>
|
|
<a href="#" class="subCell increaseFont" id="increaseFont"><span>Increase font size</span> <i class="fas fa-font"></i></a>
|
|
<a href="#" class="subCell decreaseIcon" id="decreaseIcon"><span>Decrease icon size</span> <i class="fas fa-image"></i></a>
|
|
<a href="#" class="subCell increaseIcon" id="increaseIcon"><span>Increase icon size</span> <i class="fas fa-image"></i></a>
|
|
<a href="#" class="subCell decreaseLineHeight" id="decreaseLineHeight"><span>Decrease line height</span> <i class="fas fa-text-height"></i></a>
|
|
<a href="#" class="subCell increaseLineHeight" id="increaseLineHeight"><span>Increase line height</span> <i class="fas fa-text-height"></i></a>
|
|
<a href="#" class="subCell togglePing" id="togglePing"><span>Toggle ping display</span> <i class="fas fa-circle"></i></a>
|
|
<a href="#" class="subCell highlightTerm" id="highlightTerm"><span>Highlight string</span> <i class="fas fa-tag"></i></a>
|
|
<a href="#" class="subCell messageLimit" id="messageLimit"><span>Change message limit</span> <i class="fas fa-bars"></i></a>
|
|
<a href="#" class="subCell saveLog" id="saveLog"><span>Save chat log</span> <i class="fas fa-save"></i></a>
|
|
<a href="#" class="subCell toggleCombine" id="toggleCombine"><span>Toggle line combining</span> <i class="fas fa-filter"></i></a>
|
|
<a href="#" class="subCell clearMessages" id="clearMessages"><span>Clear all messages</span> <i class="fas fa-eraser"></i></a>
|
|
</div>
|
|
<div class="sub" id="subFont">
|
|
<span class="subCell topCell" id="fontInputSpan">
|
|
<input id="fontInput" type="text" class="hidden" placeholder="Font name (Arial, 'PT Sans' for example)"><i class="fas fa-font"></i>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript" src="browserOutput.js"></script>
|
|
</body>
|
|
</html>
|