remotes/1693045480750635534/spooky-22
Aevann1 2021-07-21 13:00:39 +02:00
parent c0cb68e04a
commit cab9ff1f4c
2 changed files with 104 additions and 89 deletions

View File

@ -1,3 +1,18 @@
<script>
$('.text-expand').click(function(event){
if (event.which != 1) {
return
};
id=$(this).data('id');
$('#post-text-'+id).toggleClass('d-none');
$('.text-expand-icon-'+id).toggleClass('fa-expand-alt');
$('.text-expand-icon-'+id).toggleClass('fa-compress-alt');
})
</script>
{% for p in listing %}
<script>