1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Documentation: Add missing English documentation HTML files

This commit is contained in:
Mounir IDRASSI
2025-04-28 23:48:32 +09:00
parent d19c89d602
commit 1f9f1474a7
217 changed files with 14226 additions and 0 deletions

9
doc/html/en/donation.js Normal file
View File

@@ -0,0 +1,9 @@
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('currency-form').addEventListener('submit', function(e) {
e.preventDefault();
const select = this.querySelector('select');
if (select.value) {
window.open(select.value, '_blank');
}
});
});