Skip to content

Commit

Permalink
Refresh screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
xdpirate committed Nov 26, 2023
1 parent ea132de commit 917ff90
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Simple self-hosted tracker to keep track of upcoming, current and collected games.

![2023-06-30_18-30](https://github.com/xdpirate/gamehorizon/assets/1757462/c9c55c78-fbba-4d66-8dd8-882728f9a4ad)
![2023-11-26_19-54](https://github.com/xdpirate/gamehorizon/assets/1757462/1dbbee07-63b3-480f-b5a3-e15e476ca9e5)

## Features

Expand Down
3 changes: 3 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@
<input type="search" placeholder="Filter Unreleased..." oninput="filterTable('unreleased', this.value);" autocomplete="off"> <span class="pointer clearSearch" title="Clear filter" onclick="this.previousElementSibling.value = ''; filterTable('unreleased', '');"></span>
</div>
</h2>

<table>
<thead>
<th>Name</th>
Expand Down Expand Up @@ -242,6 +243,7 @@
<input type="search" placeholder="Filter Announced..." oninput="filterTable('tba', this.value);" autocomplete="off"> <span class="pointer clearSearch" title="Clear filter" onclick="this.previousElementSibling.value = ''; filterTable('tba', '');"></span>
</div>
</h2>

<table>
<thead>
<th>Name</th>
Expand Down Expand Up @@ -286,6 +288,7 @@
<input type="search" placeholder="Filter Released..." oninput="filterTable('released', this.value);" autocomplete="off"> <span class="pointer clearSearch" title="Clear filter" onclick="this.previousElementSibling.value = ''; filterTable('released', '');"></span>
</div>
</h2>

<table>
<thead>
<th>Name</th>
Expand Down
1 change: 1 addition & 0 deletions js/startscripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ function filterTable(table, searchStr) {
if(platformLabels[j].innerText.trim().toLowerCase().includes(searchStr)) {
rows[i].style.display = "table-row";
matched = true;
break;
}
}

Expand Down

0 comments on commit 917ff90

Please sign in to comment.