Firefox doesn't seem to like displaying videos as blocks?
This commit is contained in:
parent
66f449cced
commit
4a26b5ea14
@ -10792,6 +10792,10 @@
|
|||||||
$.asap((function() {
|
$.asap((function() {
|
||||||
return post.file.fullImage[naturalHeight];
|
return post.file.fullImage[naturalHeight];
|
||||||
}), function() {
|
}), function() {
|
||||||
|
if (isVideo) {
|
||||||
|
img.style.maxHeight = img[naturalHeight] + "px";
|
||||||
|
img.style.maxWidth = img['videoWidth'] + "px";
|
||||||
|
}
|
||||||
return ImageExpand.completeExpand(post);
|
return ImageExpand.completeExpand(post);
|
||||||
});
|
});
|
||||||
return $.after((img.controls ? thumb.parentNode : thumb), img);
|
return $.after((img.controls ? thumb.parentNode : thumb), img);
|
||||||
|
|||||||
@ -10830,6 +10830,10 @@
|
|||||||
$.asap((function() {
|
$.asap((function() {
|
||||||
return post.file.fullImage[naturalHeight];
|
return post.file.fullImage[naturalHeight];
|
||||||
}), function() {
|
}), function() {
|
||||||
|
if (isVideo) {
|
||||||
|
img.style.maxHeight = img[naturalHeight] + "px";
|
||||||
|
img.style.maxWidth = img['videoWidth'] + "px";
|
||||||
|
}
|
||||||
return ImageExpand.completeExpand(post);
|
return ImageExpand.completeExpand(post);
|
||||||
});
|
});
|
||||||
return $.after((img.controls ? thumb.parentNode : thumb), img);
|
return $.after((img.controls ? thumb.parentNode : thumb), img);
|
||||||
|
|||||||
@ -118,6 +118,10 @@ ImageExpand =
|
|||||||
img.controls = Conf['Show Controls']
|
img.controls = Conf['Show Controls']
|
||||||
$.on img, 'error', ImageExpand.error
|
$.on img, 'error', ImageExpand.error
|
||||||
$.asap (-> post.file.fullImage[naturalHeight]), ->
|
$.asap (-> post.file.fullImage[naturalHeight]), ->
|
||||||
|
if isVideo
|
||||||
|
# XXX Firefox doesn't seem to size videos correctly?
|
||||||
|
img.style.maxHeight = img[naturalHeight] + "px"
|
||||||
|
img.style.maxWidth = img['videoWidth'] + "px"
|
||||||
ImageExpand.completeExpand post
|
ImageExpand.completeExpand post
|
||||||
$.after (if img.controls then thumb.parentNode else thumb), img
|
$.after (if img.controls then thumb.parentNode else thumb), img
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user