Browse Source

Merge pull request #151 from JasonPuglisi/hide-videos

Added ability to hide videos/webms
pull/40/head
Marcin Łabanowski 9 years ago
parent
commit
481f9b1475
  1. 4
      js/hide-images.js

4
js/hide-images.js

@ -93,9 +93,9 @@ $(document).ready(function(){
$(this).parent().prev().find('.hide-image-link').click();
};
$('div.post > a > img.post-image, div > a > img.post-image').each(handle_images);
$('div.post > a > img.post-image, div.post > a > video.post-image, div > a > img.post-image, div > a > video.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, a > video.post-image').each(handle_images);
});
});

Loading…
Cancel
Save