BootstrapAdmin/Bootstrap.Admin/Scripts/Content.js

12 lines
320 B
JavaScript

$(function () {
function iframeResposive() {
try {
var fra = $('iframe').get(0);
fra.height = fra.contentDocument.body.offsetHeight;
}
catch (e) {
}
}
$(window).on('load', iframeResposive);
$(window).on('resize', iframeResposive);
});