Don't expand webm or YouTube videos on js/expand-all-images.js

This commit is contained in:
8chan 2014-12-20 14:02:03 -08:00 committed by czaks
parent a723ff8e66
commit 99ee2e36ba

View File

@ -23,6 +23,14 @@ onready(function(){
.text(_('Expand all images'))
.click(function() {
$('a img.post-image').each(function() {
// Don't expand YouTube embeds
if ($(this).parent().parent().hasClass('video-container'))
return;
// or WEBM
if (/^\/player\.php\?/.test($(this).parent().attr('href')))
return;
if (!$(this).parent()[0].dataset.expanded)
$(this).parent().click();
});