websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Scripts/appScripts/recalculateResourseHeight.js
2015-01-23 02:03:27 -08:00

15 lines
401 B
JavaScript

function recalculateResourseHeight() {
$(document).ready(function () {
var heights = $(".element-container").map(function () {
return $(this).height();
}).get(),
maxHeight = Math.max.apply(null, heights);
if (maxHeight < 135) {
maxHeight = 135;
}
$(".element-container").height(maxHeight);
});
}