Browse Source

fix hide link on images fetched with ajax

pull/40/head
Bui 10 years ago
committed by czaks
parent
commit
5f521adfd5
  1. 2
      js/hide-images.js

2
js/hide-images.js

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

Loading…
Cancel
Save