mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
Added ability to hide videos/webms
This commit is contained in:
parent
d3d167affb
commit
c97475d487
@ -93,9 +93,9 @@ $(document).ready(function(){
|
|||||||
$(this).parent().prev().find('.hide-image-link').click();
|
$(this).parent().prev().find('.hide-image-link').click();
|
||||||
};
|
};
|
||||||
|
|
||||||
$('div.post > a > img.post-image, div > a > img.post-image').each(handle_images);
|
$('div.post > a > img.post-image, div.post > a > video.post-image, div > a > img.post-image, div > a > video.post-image').each(handle_images);
|
||||||
|
|
||||||
$(document).on('new_post', function(e, post) {
|
$(document).on('new_post', function(e, post) {
|
||||||
$(post).find('a > img.post-image').each(handle_images);
|
$(post).find('a > img.post-image, a > video.post-image').each(handle_images);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user