0.0.37 upd autocomlitev2.js

This commit is contained in:
2023-07-21 18:51:49 +03:00
parent 1ff6875e58
commit c58c25b049
2 changed files with 7 additions and 0 deletions

View File

@@ -1009,3 +1009,6 @@ form.new_route{
height: 200px; height: 200px;
overflow: scroll; overflow: scroll;
} }
.input_list show.hide{
display: none;
}

View File

@@ -42,6 +42,10 @@ function selectItemAddrPoint(id, name, ctrl_name){
tap_txt_cont.value = name; tap_txt_cont.value = name;
let tap_cont = document.querySelector("#id_" + ctrl_name.slice(0, -4)); let tap_cont = document.querySelector("#id_" + ctrl_name.slice(0, -4));
tap_cont.value = id; tap_cont.value = id;
let clear_search_list = document.querySelector(".input_list")
clear_search_list.classList.remove('show')
} }