rDrama/files/assets/js/submission_listing.js
2022-05-10 21:05:51 -04:00

16 lines
486 B
JavaScript

function expandText(id) {
document.getElementById('post-text-'+id).classList.toggle('d-none');
for (const e of document.getElementsByClassName('text-expand-icon-'+id))
{
e.classList.toggle('fa-expand-alt');
e.classList.toggle('fa-compress-alt');
}
};
function togglevideo(pid) {
let vid = document.getElementById(`video-${pid}`).classList
vid.toggle('d-none')
let vid2 = document.getElementById(`video2-${pid}`)
if (vid.contains('d-none')) vid2.pause()
else vid2.play()
}