0.0.131 search routes

This commit is contained in:
SBD
2025-01-24 21:43:03 +03:00
parent 04af851875
commit ca05de3d7d
18 changed files with 336 additions and 221 deletions

View File

@@ -114,4 +114,15 @@ function highlightRoute(el) {
});
request.ajaxRequest()
}
function respondBtnClickEvent(el) {
if (!el) return;
let $parent = el.closest(".route_card_owner_info")
let $responde_cont = $parent.querySelector(".respond_route_cont")
$(el).fadeOut(500);
sleep(500).then(() => {
$($responde_cont).fadeIn(500);
})
}