Browse Source

hide-images.js: bugfix

pull/40/head
czaks 10 years ago
parent
commit
a626f4afd7
  1. 4
      js/hide-images.js

4
js/hide-images.js

@ -81,9 +81,9 @@ $(document).ready(function(){
$(this).parent().prev().find('.hide-image-link').click();
};
$('div.post > a > img, div > a > img').each(handle_images);
$('div.post > a > img.post-image, div > a > img.post-image').each(handle_images);
$(document).bind('new_post', function(e, post) {
$(post).find('> a > img').each(handle_images);
$(post).find('> a > img.post-image').each(handle_images);
});
});

Loading…
Cancel
Save