BootstrapAdmin/Bootstrap.Admin/Scripts/Content.js

12 lines
320 B
JavaScript
Raw Normal View History

2016-11-02 12:12:53 +08:00
$(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);
});