1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2026-06-13 08:17:00 -05: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
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');
}
});
});