0.0.152 routes

This commit is contained in:
SBD
2025-02-14 16:20:26 +03:00
parent 0a56555f35
commit e1053073a1
5 changed files with 22 additions and 8 deletions

View File

@@ -138,4 +138,12 @@ function clickedUnregisteredMsgRoute (el) {
let $parent = el.closest(".route_card_text_container")
$parent.classList.add('clicked');
}
function unwrapRouteComment (el){
if (!el) return;
let $parent = el.closest(".wrapped")
if (!$parent) return;
$parent.classList.remove('wrapped');
}