add bookmark collection editor

This commit is contained in:
2026-06-02 08:12:26 +03:00
parent 5676ced836
commit edfa2e232f
9 changed files with 163 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
export const b = {
init: 'enhance',
init: 'enhance enhanceHide',
}
export function enhance(_, __, el) {
@@ -18,3 +18,11 @@ export function enhance(_, __, el) {
}
}
}
export function enhanceHide(_, __, el) {
if (el === undefined) {
return;
}
el.style.display = 'none';
}