6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
function startDownload() {
|
|
document.getElementById('download-button').innerHTML = 'Téléchargement en cours...';
|
|
}
|
|
function refreshPage() {
|
|
window.location.reload();
|
|
} |