We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1030f commit 93f0814Copy full SHA for 93f0814
docs/index.html
@@ -3906,12 +3906,11 @@ <h3>Safety Levels</h3>
3906
downloadButton.addEventListener('click', function() {
3907
const downloadLink = document.createElement('a');
3908
downloadLink.href = downloadUrl;
3909
- downloadLink.download = 'ssIDE.zip';
3910
3911
document.body.appendChild(downloadLink);
3912
downloadLink.click();
3913
document.body.removeChild(downloadLink);
3914
- console.log('Downloading from:', downloadUrl);
+ console.log('Switching to:', downloadUrl);
3915
});
3916
} else {
3917
console.error('Download button not found');
0 commit comments