blob: 929d4a082d1b2fbc7fa7f139a7a1f23861358139 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* Update iniswap drowdown
*/
export function updateIniswap() {
const ini_select = <HTMLSelectElement>(
document.getElementById("client_iniselect")
);
const ini_name = <HTMLInputElement>document.getElementById("client_ininame");
if (ini_select.selectedIndex === 0) {
ini_name.style.display = "initial";
} else {
ini_name.style.display = "none";
}
}
window.updateIniswap = updateIniswap;
|