link testing

This commit is contained in:
Brychan Dempsey 2021-06-08 21:54:36 +12:00
parent 227d7fd874
commit 02aa0891cb
2 changed files with 11 additions and 8 deletions

View File

@ -5,8 +5,6 @@
body { body {
margin: 0px; margin: 0px;
background-color: #383c4a; background-color: #383c4a;
padding-top: 20px;
padding-right: 15px;
} }
</style> </style>
<script> <script>
@ -75,19 +73,24 @@
return data.text(); return data.text();
}) })
.then(function (html) { .then(function (html) {
document.getElementById('renderspot').innerHTML = html; document.getElementById('capsule').innerHTML = html;
}); });
} }
}); });
</script> </script>
<style> <style>
.markdown { #capsule {
overflow: auto !important; padding-right: 15px;
padding-top: 20px;
} }
</style> </style>
</head> </head>
<body margin="0"> <body margin="0">
<div id="renderspot" style="height: 100%; width: 100%" /> <div id="capsule" class="ui container">
<!-- style="height: 100%; width: 100%" -->
<div id="renderspot" />
</div>
</body> </body>
</html> </html>

View File

@ -24,7 +24,7 @@ See [EntityManager.java](/BrychanD/JaveECS/src/branch/master/javaecs/src/main/ja
``` java ``` java
protected EntityManager(){} protected EntityManager(){}
``` ```
The default constructor initialises [unusedEntities](#unusedEntities) to a new queue containing [maxSize](#maxSize) (`1024`) unique integers. The default constructor initialises [unusedEntities](#unusedentities) to a new queue containing [maxSize](#maxsize) (`1024`) unique integers.
<br> <br>