mirror of
https://github.com/friendica/friendica
synced 2024-11-13 21:42:54 +00:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
|
function log_show_details(id) {
|
||
|
document
|
||
|
.querySelectorAll('[data-id="' + id + '"]')
|
||
|
.forEach(elm => {
|
||
|
elm.classList.toggle('hidden')
|
||
|
});
|
||
|
}
|