add hooks for geoip lookup

This commit is contained in:
Matt Walsh 2025-05-21 13:49:49 -05:00
commit 8cb8873760
No known key found for this signature in database
3 changed files with 32 additions and 1 deletions

View file

@ -172,6 +172,11 @@ class AutoComplete {
}
}
setValue(newValue) {
this.currentValue = newValue;
this.elem.value = newValue;
}
onValueChange() {
clearTimeout(this.onValueChange);