1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-09-24 03:28:22 +02:00

fix hide link on images fetched with ajax

This commit is contained in:
Bui 2014-10-03 00:37:43 +09:00 committed by czaks
parent 7d5899d3a7
commit 5f521adfd5

View File

@ -96,6 +96,6 @@ $(document).ready(function(){
$('div.post > a > img.post-image, div > a > img.post-image').each(handle_images); $('div.post > a > img.post-image, div > a > img.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').each(handle_images);
}); });
}); });