mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 08:55:32 +02:00
fix: invalid css selector for download links (#694)
This commit is contained in:
parent
7ed69308ba
commit
21e47afe4c
1 changed files with 2 additions and 1 deletions
|
@ -95,7 +95,8 @@
|
|||
}
|
||||
|
||||
// Replace all download links with twilight versions
|
||||
const downloadLinks = document.querySelectorAll('a.download-link')
|
||||
const downloadLinks = document.querySelectorAll('a.download-button')
|
||||
|
||||
for (const link of downloadLinks) {
|
||||
if (!link.id.includes('beta')) {
|
||||
const href = link.getAttribute('href')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue