small images displayed incorrectly in popup, and there we're navigation
controls in popup sometimes when there were only one image
This commit is contained in:
Hannes Mannerheim 2015-06-12 22:35:37 +02:00
parent f1f58ac65f
commit 84ddb07130

View File

@ -1470,7 +1470,7 @@ $('body').on('click','.stream-item .queet img.attachment-thumb',function (event)
var footerHTML = $parentStreamItemClone.find('.queet').outerHTML();
$queetThumbsClone.find('img.attachment-thumb[src="' + thisAttachmentThumbSrc + '"]').parent().addClass('display-this-thumb');
var imgNum = parentStreamItem.find('.attachment-thumb').length;
var imgNum = parentStreamItem.children('.queet').find('.attachment-thumb').length;
if(imgNum > 1) {
$queetThumbsClone.find('.queet-thumbs').before('<div class="prev-thumb"></div>');
$queetThumbsClone.find('.queet-thumbs').after('<div class="next-thumb"></div>');
@ -1516,7 +1516,7 @@ function calculatePopUpAndImageDimensions(img_src) {
var displayImgWidth = thisImgWidth;
var popUpWidth = 540;
if(thisImgHeight > maxImageHeight) {
displayImgWidth = Math.round(thisImgHeight/maxImageHeight*displayImgWidth);
displayImgWidth = Math.round(maxImageHeight/thisImgHeight*displayImgWidth);
}
}
else if(thisImgWidth < 900) {