more links
This commit is contained in:
parent
21ff63a3c5
commit
9c710351b2
2 changed files with 5 additions and 2 deletions
|
@ -130,12 +130,15 @@
|
||||||
<h1>Players: (click name to toggle strikethrough)</h1>
|
<h1>Players: (click name to toggle strikethrough)</h1>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
|
<a href="https://www.youtube.com/watch?v=DpXy041BIlA">Tutorial</a><br>
|
||||||
<a href="http://tom7.org/chess">Piece sprites, board colors, algorithms, etc.</a>
|
<a href="http://tom7.org/chess">Piece sprites, board colors, algorithms, etc.</a>
|
||||||
|
&
|
||||||
|
<a href="https://sourceforge.net/p/tom7misc/svn/HEAD/tree/trunk/chess/">Original implementation</a>
|
||||||
by
|
by
|
||||||
<a href="https://tom7.org">tom7</a>
|
<a href="https://tom7.org">tom7</a>
|
||||||
<br>
|
<br>
|
||||||
<a href="https://git.pyrope.net/mbk/elo-worldle">Code</a>
|
<a href="https://git.pyrope.net/mbk/elo-worldle">Code</a>
|
||||||
&
|
&
|
||||||
<a href="https://elo-worldle.pyrope.net/paper.pdf">Paper</a>
|
<a href="https://elo-worldle.pyrope.net/paper.pdf">Paper</a>
|
||||||
by
|
by
|
||||||
<a href="https://pl.pyrope.net/terezi">me</a>
|
<a href="https://pl.pyrope.net/terezi">me</a>
|
||||||
|
|
2
main.js
2
main.js
|
@ -618,7 +618,7 @@ function show_win() {
|
||||||
game_over.innerText = "YOU WIN YOU WIN YOU WIN YOU WIN HOLY CRAP";
|
game_over.innerText = "YOU WIN YOU WIN YOU WIN YOU WIN HOLY CRAP";
|
||||||
let stats = document.getElementById("stats");
|
let stats = document.getElementById("stats");
|
||||||
stats.style.display = "block";
|
stats.style.display = "block";
|
||||||
let stats_text = `#EloWorldle\n#ew_${todays_player.name}\nGuesses: ${num_guesses}\nMoves: ${num_moves}`;
|
let stats_text = `#elo_worldle\n#ew_${todays_player.name}\nGuesses: ${num_guesses}\nMoves: ${num_moves}`;
|
||||||
stats.innerText = stats_text;
|
stats.innerText = stats_text;
|
||||||
let copy_stats = document.getElementById("copy-stats");
|
let copy_stats = document.getElementById("copy-stats");
|
||||||
copy_stats.style.display = "block";
|
copy_stats.style.display = "block";
|
||||||
|
|
Loading…
Reference in a new issue