From c97475d4875994c223ed79a7aabadd58a5a2ae30 Mon Sep 17 00:00:00 2001 From: Jason Puglisi Date: Tue, 28 Jul 2015 18:45:45 -0400 Subject: [PATCH] Added ability to hide videos/webms --- js/hide-images.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/hide-images.js b/js/hide-images.js index 023c166c..323a1a1f 100644 --- a/js/hide-images.js +++ b/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); }); });