JavaECS-Docs/Wiki.html

15 lines
641 B
HTML
Raw Normal View History

2021-06-05 18:00:14 +12:00
<script>
function cleanContent()
{
var $iFrameContents = $('iframe').contents(),
$entryContent = $iFrameContents.find('div.file-view');
$iFrameContents.find('html').replaceWith($entryContent);
// Next restore the style-sheets
var stylesheet = $('iframe').contents().find('link[rel="stylesheet"]').prependTo($iFrameContents.find('div.file-view'));
}
$('iframe').load( function(){
//put your iframe code here
cleanContent();
});
</script>
2021-06-05 17:30:26 +12:00
<iframe width="100%" height="100%" src="https://git.software.kauripeak.co.nz/BrychanD/JavaECS-Docs" frameborder="0"></iframe>