mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
21 lines
563 B
JavaScript
21 lines
563 B
JavaScript
var start_time=new Date().getTime();
|
|
|
|
var interval = setInterval(function () {
|
|
var end_time=new Date().getTime();
|
|
//for 10 seconds.
|
|
if(end_time-start_time>=10000){
|
|
clearInterval(interval);
|
|
}
|
|
|
|
const body = document.body;
|
|
const html = document.documentElement;
|
|
|
|
const height = Math.max(body.scrollHeight, body.offsetHeight,
|
|
html.clientHeight, html.scrollHeight, html.offsetHeight);
|
|
|
|
if ('parentIFrame' in window) {
|
|
console.log("iframe set height to " + height);
|
|
parentIFrame.size(height);
|
|
}
|
|
}, 500);
|