mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Moves us to the changelog system used by /vg/, /tg/, and others.
Cleans up the HTLM folder, removing unused files. Will also attempt include /tg/'s "You have unread changelog entries" notification on join.
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
<form name="spawner" action="byond://?src=/* ref src */" method="get">
|
||||
<input type="hidden" name="src" value="/* ref src */">
|
||||
|
||||
Type <input type="text" name="filter" value="" onkeypress="submitFirst(event)" style="width:350px"> <input type = "button" value = "Search" onclick = "updateSearch()" /><br>
|
||||
Type <input type="text" name="filter" value="" onkeypress="submitFirst(event)" style="width:280px;height:25"> <input type = "button" value = "Search" onclick = "updateSearch()" /><br>
|
||||
Offset: <input type="text" name="offset" value="x,y,z" style="width:250px">
|
||||
|
||||
A <input type="radio" name="offset_type" value="absolute">
|
||||
@@ -44,7 +44,7 @@
|
||||
</select>
|
||||
<br><br>
|
||||
<select name="object_list" id="object_list" size="18" multiple style="width:98%"></select><br>
|
||||
<input type="submit" value="Spawn">
|
||||
<input type="submit" value="spawn">
|
||||
</form>
|
||||
|
||||
<script language="JavaScript">
|
||||
@@ -72,12 +72,19 @@
|
||||
|
||||
function updateSearch()
|
||||
{
|
||||
if (old_search == document.spawner.filter.value)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
old_search = document.spawner.filter.value;
|
||||
|
||||
|
||||
var filtered = new Array();
|
||||
for(var i in objects)
|
||||
var i;
|
||||
for (i in objects)
|
||||
{
|
||||
if(objects[i].indexOf(old_search) < 0)
|
||||
if(objects[i].search(old_search) < 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user