Added common files (geo layers, css, js and images) as well as the geo plot method and a mechanism to insert the mnr css etc files in the header

This commit is contained in:
2026-02-05 11:00:43 +00:00
parent 21c15a4f0d
commit a37e664c82
32 changed files with 1150 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
window.addEventListener('message', function (event) {
if (event.data == "FrameHeight") {
var body = document.body, html = document.documentElement;
var height = Math.max(body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
event.source.postMessage({ "FrameHeight": height }, "*");
}
});