Fix remove last childnode
This commit is contained in:
parent
e0ae79eaf1
commit
1829912c91
@ -33,6 +33,11 @@ export class ConsoleGlobalMessageManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
initialise() {
|
initialise() {
|
||||||
|
const mainSectionDiv = HtmlUtils.getElementByIdOrFail<HTMLDivElement>('main-container');
|
||||||
|
mainSectionDiv.childNodes.forEach((c : ChildNode) => {
|
||||||
|
c.remove();
|
||||||
|
});
|
||||||
|
|
||||||
const buttonText = document.createElement('p');
|
const buttonText = document.createElement('p');
|
||||||
buttonText.innerText = 'Console';
|
buttonText.innerText = 'Console';
|
||||||
|
|
||||||
@ -50,7 +55,6 @@ export class ConsoleGlobalMessageManager {
|
|||||||
|
|
||||||
this.createTextMessagePart();
|
this.createTextMessagePart();
|
||||||
|
|
||||||
const mainSectionDiv = HtmlUtils.getElementByIdOrFail<HTMLDivElement>('main-container');
|
|
||||||
mainSectionDiv.appendChild(this.divMainConsole);
|
mainSectionDiv.appendChild(this.divMainConsole);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user