Initial commit

This commit is contained in:
Joey Kimsey
2024-08-04 21:15:59 -04:00
parent c9d1fb983f
commit 0d469501ee
695 changed files with 70184 additions and 71 deletions

16
app/views/debug.html Normal file
View File

@ -0,0 +1,16 @@
<link rel="stylesheet" href="{ROOT_URL}app/css/debug.css" crossorigin="anonymous">
<div id="debug-wrapper">
<div id="debug-header">
<p><b>Debug Log:</b></p>
<button id="debug-copy" name="debug-copy">Copy</button>
</div>
<div id="debug-log">
{DEBUGGING_LOG}
</div>
</div>
<script language="JavaScript" type="text/javascript">
$("#debug-copy").on("click", function(){
copyAll("debug-log");
console.log('copied');
});
</script>