From 6aab0ee986543818a2416700b48a97b0bdee95bd Mon Sep 17 00:00:00 2001 From: Brychan Dempsey Date: Tue, 8 Jun 2021 22:05:12 +1200 Subject: [PATCH] fixed links, testing container --- RenderHTML.html | 1 + docs/entity/EntityManager.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RenderHTML.html b/RenderHTML.html index 291a569..b826fcb 100644 --- a/RenderHTML.html +++ b/RenderHTML.html @@ -28,6 +28,7 @@ // Select the correct container var htmlTrimmed = doc.querySelector(selector); if (htmlTrimmed) { + htmlTrimmed = htmlTrimmed.parentElement; var styleSheets = doc.querySelectorAll("link"); for (var i = 0; i < styleSheets.length; i++) { document.head.appendChild(styleSheets[i]); diff --git a/docs/entity/EntityManager.md b/docs/entity/EntityManager.md index 198bc62..a1e50bb 100644 --- a/docs/entity/EntityManager.md +++ b/docs/entity/EntityManager.md @@ -18,7 +18,7 @@ Before attempting to use a system, it must be registered. Registration requires a call to `registerSystem(String systemName, ECSSystem system)`, with params of the `String name` and a object reference of the [ECSSystem](./ECSSystem.md). Using the object reference, a system can be invoked at any time. -See [EntityManager.java](/BrychanD/JaveECS/src/branch/master/javaecs/src/main/java/nz/ac/massey/programming_project_159333_s1_2021/EntityManager.java) +See [EntityManager.java](/BrychanD/JaveECS/src/branch/master/javaecs/src/main/java/nz/ac/massey/javaecs/EntityManager.java) ## Constructors ``` java