This commit is contained in:
Alexander Popov 2021-02-25 04:38:21 +03:00
parent b9e8284334
commit 688d21be4d
Signed by: iiiypuk
GPG Key ID: 398FC73478D97286
3 changed files with 12 additions and 7 deletions

View File

@ -1,2 +1,13 @@
## 2.0.1 [2021-02-25]
- - Make iOS web app
## 2.0.0 [2021-02-25] ## 2.0.0 [2021-02-25]
Init version Init version
## Legend
- 🐛 - Bug
- ✔️ - Fixed
- ❌ - Removed
- - Added
- - Information
- ♻️ - Edited

View File

@ -111,8 +111,6 @@ function showPage(element, pageName)
document.querySelector("#content").innerHTML = pageName; document.querySelector("#content").innerHTML = pageName;
} }
// game // game
window.onload = function() window.onload = function()
{ {
@ -121,13 +119,9 @@ window.onload = function()
console.log('Word:', gameWord.toLowerCase()); console.log('Word:', gameWord.toLowerCase());
document.querySelector('#word').innerHTML = gameAnswered; document.querySelector('#word').innerHTML = gameAnswered;
// fix load empty word
// if (gameWord === 0) { document.location.reload(true); }
if (window.screen.availWidth <= 599) if (window.screen.availWidth <= 599)
{ {
document.querySelector('#lives').classList.remove('error'); document.querySelector('#lives').classList.remove('error');
document.querySelector('#lives').classList.add('dark'); document.querySelector('#lives').classList.add('dark');
alert(599);
} }
} }

View File

@ -60,7 +60,7 @@
<hr> <hr>
<p class="text-grey is-marginless is-small"> <p class="text-grey is-marginless is-small">
by iiiypuk<br> by iiiypuk<br>
ver: 2.0.0 ver: 2.0.1
</p> </p>
</footer> </footer>
</div> </div>