remotes/1693045480750635534/spooky-22
Aevann1 2021-07-21 13:01:19 +02:00
parent cab9ff1f4c
commit f83b0527db
2 changed files with 13 additions and 15 deletions

View File

@ -3,6 +3,19 @@
<head>
<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');
})
post_comment=function(fullname){

View File

@ -1,18 +1,3 @@
<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>