23 lines
611 B
HTML
23 lines
611 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>remark42</title>
|
|
<link rel="stylesheet" href="remark.css">
|
|
</head>
|
|
<body>
|
|
<div id="remark42"></div>
|
|
<script type="text/javascript" src="remark.js"></script>
|
|
<script>
|
|
var lastHeight = 0;
|
|
setInterval(() => {
|
|
if (document.body.offsetHeight !== lastHeight) {
|
|
lastHeight = document.body.offsetHeight;
|
|
window.parent.postMessage(JSON.stringify({ remarkIframeHeight: lastHeight }), '*');
|
|
}
|
|
}, 200);
|
|
</script>
|
|
</body>
|
|
</html>
|