default sort hints table so that it pushes found hints to the bottom

This commit is contained in:
Fabian Dill 2021-02-19 15:18:26 +01:00
parent 129d2ec037
commit 9b6a695551
2 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ window.addEventListener('load', () => {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
adjustTableHeight(); adjustTableHeight();
tables.draw() tables.draw();
}); });
$(".table-wrapper").scrollsync({ $(".table-wrapper").scrollsync({

View File

@ -1,7 +1,7 @@
{% extends 'tablepage.html' %} {% extends 'tablepage.html' %}
{% block head %} {% block head %}
{{ super() }} {{ super() }}
<title>Multiworld Tracker for Room {{ room.id }}</title> <title>Multiworld Tracker</title>
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/tracker.css") }}"/> <link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/tracker.css") }}"/>
<script type="application/ecmascript" src="{{ static_autoversion("assets/jquery.scrollsync.js") }}"></script> <script type="application/ecmascript" src="{{ static_autoversion("assets/jquery.scrollsync.js") }}"></script>
<script type="application/ecmascript" src="{{ static_autoversion("assets/tracker.js") }}"></script> <script type="application/ecmascript" src="{{ static_autoversion("assets/tracker.js") }}"></script>
@ -151,7 +151,7 @@
{% endfor %} {% endfor %}
{% for team, hints in hints.items() %} {% for team, hints in hints.items() %}
<div class="table-wrapper"> <div class="table-wrapper">
<table class="table non-unique-item-table"> <table class="table non-unique-item-table" data-order='[[5, "desc"], [0, "asc"]]'>
<thead> <thead>
<tr> <tr>
<th>Finder</th> <th>Finder</th>