atr/templates/announce-selected.html [186:201]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
"csrf_token": csrfToken
})
})
.then(response => {
if (!response.ok) {
return response.text().then(text => {
throw new Error(`HTTP error ${response.status}: ${text}`)
});
}
return response.text();
})
.then(previewText => {
previewPre.textContent = previewText;
})
.catch(error => {
console.error("Error fetching email preview:", error);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
atr/templates/voting-selected-revision.html [166:181]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
"csrf_token": csrfToken
})
})
.then(response => {
if (!response.ok) {
return response.text().then(text => {
throw new Error(`HTTP error ${response.status}: ${text}`)
});
}
return response.text();
})
.then(previewText => {
previewPre.textContent = previewText;
})
.catch(error => {
console.error("Error fetching email preview:", error);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -