Fixes some issues with the 4.4 release page (#1033)

- Fixes missing margins of the download content
- Add Play Store and Horizon Store releases
- Display all downloads when JavaScript is disabled
This commit is contained in:
Adam Scott
2025-03-06 16:09:44 +01:00
committed by GitHub
parent 7e6d6beb84
commit 8c3a18b062
6 changed files with 67 additions and 43 deletions

View File

@@ -135,6 +135,9 @@
// Open from the main download buttons.
const downloadButtons = document.querySelectorAll('.btn-download, .download-button');
downloadButtons.forEach((it) => {
if (it.dataset?.external === "yes") {
return;
}
it.addEventListener('click', () => {
thankYouWrapper.style.display = '';
document.querySelector('.btn.btn-donate').focus();