mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 02:58:02 -06:00
Now we have 3 folders under html directory:en, ru, zh-cn. Similar separation exist in online version: https://veracrypt.fr/en https://veracrypt.fr/ru https://veracrypt.fr/zh-cn
10 lines
341 B
JavaScript
10 lines
341 B
JavaScript
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');
|
|
}
|
|
});
|
|
});
|