This commit is contained in:
SBD
2023-11-19 14:52:52 +03:00
parent a3ef86ba37
commit 6f06f96a94
3 changed files with 9 additions and 2 deletions

View File

@@ -1102,6 +1102,7 @@
border-right: 1px solid #E6E6E6;
border-bottom: 1px solid #E6E6E6;
border-left: 0;
cursor: text;
}
.abbreviation_airport_in_search.hide{

View File

@@ -64,4 +64,10 @@ function changeWidthEL (el){
el.classList.add('w_100')
}
}
function focusOnInput (el) {
let parent = el.offsetParent
let input = parent.querySelector('.find_route')
input.focus()
}