remove unicode

This commit is contained in:
UNFR 2025-07-21 09:38:15 +00:00
parent 14507e4a61
commit 4664969450

View File

@ -429,7 +429,7 @@
const newTabRow = document.createElement('div'); newTabRow.style.marginTop = '14px'; const newTabRow = document.createElement('div'); newTabRow.style.marginTop = '14px';
const cbNewTab = Object.assign(document.createElement('input'), { type: 'checkbox', id: 'chk_newtab', checked: openReleasesInNewTab() }); const cbNewTab = Object.assign(document.createElement('input'), { type: 'checkbox', id: 'chk_newtab', checked: openReleasesInNewTab() });
cbNewTab.addEventListener('change', () => { localStorage.setItem(STORAGE_RELEASE_NEWTAB_KEY, cbNewTab.checked ? '1' : '0'); location.reload(); }); cbNewTab.addEventListener('change', () => { localStorage.setItem(STORAGE_RELEASE_NEWTAB_KEY, cbNewTab.checked ? '1' : '0'); location.reload(); });
const labNewTab = Object.assign(document.createElement('label'), { textContent: "Ouvrir «Voir toutes les releases» dans un nouvel onglet", htmlFor: cbNewTab.id, style: 'margin-left:7px;color:#ffe388;' }); const labNewTab = Object.assign(document.createElement('label'), { textContent: "Ouvrir « Voir toutes les releases » dans un nouvel onglet", htmlFor: cbNewTab.id, style: 'margin-left:7px;color:#ffe388;' });
newTabRow.appendChild(cbNewTab); newTabRow.appendChild(labNewTab); menu.appendChild(newTabRow); newTabRow.appendChild(cbNewTab); newTabRow.appendChild(labNewTab); menu.appendChild(newTabRow);
box.appendChild(toggle); box.appendChild(menu); box.appendChild(toggle); box.appendChild(menu);