websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Scripts/appScripts/recalculateResourseHeight.js
2014-12-03 11:43:26 +03:00

11 lines
326 B
JavaScript

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