This commit is contained in:
Brychan Dempsey 2021-06-05 19:44:51 +12:00
parent aa6380644f
commit 2d0aa6b830

View File

@ -1,16 +1,12 @@
<head> <head>
<script> <script>
function changeUrl() { var docframe = document.getElementById("docFrame");
var $iFrameContents = $('iframe').contents(), var targetContent = docframe.querySelector(".file-view");
$entryContent = $iFrameContents.find('div.file-view'); docframe.getElementsByTagName('body')[0].innerHTML = targetContent.innerHTML;
$iFrameContents.find('html').replaceWith($entryContent);
// Next restore the style-sheets
var stylesheet = $('iframe').contents().find('link[rel="stylesheet"]').prependTo($iFrameContents.find('div.file-view'));
console.log("Cleaning content");
}
</script> </script>
</head> </head>
<iframe id="iframe" width="100%" onload="changeUrl()" height="100%" src="https://git.software.kauripeak.co.nz/BrychanD/JavaECS-Docs/src/branch/master/README.md" frameborder="0"></iframe> <iframe id="docFrame" width="100%" height="100%" src="https://git.software.kauripeak.co.nz/BrychanD/JavaECS-Docs/src/branch/master/README.md" frameborder="0"></iframe>
<!-- <script> <!-- <script>
const queryLoc = window.location.origin; const queryLoc = window.location.origin;