fix hide link on images fetched with ajax

This commit is contained in:
Bui 2014-10-03 00:37:43 +09:00
parent cce53a5ac4
commit b76f590a98

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