You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
647 B
HTML
14 lines
647 B
HTML
<form action="#" onsubmit="updateHeight(event)">
|
|
<input type="text" name="label" onkeyup="updateHeight(event)" value="{{ height }}" id="height-input-{{ address }}" onfocusout="updateHeight(event)">
|
|
</form>
|
|
<script>
|
|
function updateHeight(e) {
|
|
e.preventDefault();
|
|
if (e.keyCode === 13) {
|
|
htmx.ajax('GET', `/wallet/{{ address }}/rescan/${e.target.value}`, '#show_wallets');
|
|
} else if (e.keyCode === 27 || e.type == "focusout") {
|
|
htmx.ajax('GET', '{{ url_for("htmx.show_wallets") }}', '#show_wallets');
|
|
}
|
|
}
|
|
document.getElementById('height-input-{{ address }}').focus();
|
|
</script> |