remove unicode
This commit is contained in:
parent
14507e4a61
commit
4664969450
@ -429,7 +429,7 @@
|
||||
const newTabRow = document.createElement('div'); newTabRow.style.marginTop = '14px';
|
||||
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(); });
|
||||
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);
|
||||
|
||||
box.appendChild(toggle); box.appendChild(menu);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user