This commit is contained in:
Aevann1 2021-07-21 13:00:39 +02:00
parent e9ad5855ff
commit bdcc5dfc28
3 changed files with 104 additions and 102 deletions

View file

@ -960,17 +960,4 @@ $('.expandable-image').click( function(event) {
var url= $(this).data('url');
expandDesktopImage(url,url);
})
$('.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');
})