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

Documentation: various fixes. Add Russian CHM file.

This commit is contained in:
Mounir IDRASSI
2025-04-29 11:45:12 +09:00
parent ae8f511c01
commit 97e01098d4
15 changed files with 360 additions and 39 deletions

9
doc/html/ru/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');
}
});
});