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);
$(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);
});
});