Lines Matching refs:height

66                     height: 0
71 height : 13,
87 height: ''
92 height : '',
175 height: content.height(),
184 …_.resizePopup(popupData.width, popupData.height, additionalContent.innerHeight(), image, false, po…
209 height: content.height()
255 … _.resizePopup(popupData.width, popupData.height, null, content, true, popupData.hasNextPrevious);
360 var prevHeight = content.height();
362 offsetElement.css({width:'auto', height: 'auto'});
365 var height = offsetElement.naturalHeight() || offsetElement.outerHeight();
368 offsetElement.css({width:prevWidth, height: prevHeight});
370 return {width: width, height: height};
373 …_.resizePopup = function(width, height, additionalHeight, offsetElement, isPageContent, needsNextP… argument
375 internal.log("Initial Size: " + width + " " + height);
378 if ( offsetElement && !width && !height) {
381 height = optimalSize.height;
384 internal.log("OffsetElement Size: " + width + " " + height);
386 height = parseInt(height) || ($(window).height() * 0.8);
388 var ratio = width / height;
389 var maxHeight = ( $(window).height() * 0.99 ) - 60;
393 height += additionalHeight;
395 internal.log("After Additional Content Size: " + width + " " + height);
397 if ( height > maxHeight ) {
398 height = maxHeight;
400 width = (height - additionalHeight) * ratio;
409 height = width / ratio + additionalHeight;
416 yOffset = Math.max(($(window).height() - height) * 0.5 + yOffset, 5);
419 internal.log("Final Size: " + width + " " + height);
426 height : height - additionalHeight
431 height : '',
438 height : isPageContent ? height : 'auto',
705 $.fn.naturalHeight = function() { return img(this.src).height; };