1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-21 04:59:49 +01:00

Merge pull request #132 from bui/fix-hide-images

fix hide link on images fetched with ajax
This commit is contained in:
Fredrick Brennan 2014-10-02 21:29:51 -04:00
commit 5ad25429b6

View File

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