We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a19cd commit 08b1766Copy full SHA for 08b1766
src/html-generation/html-generator.ts
@@ -373,6 +373,13 @@ export class HTMLGenerator {
373
374
documentContainer.appendChild(middleContent);
375
376
+ const tmpDiv = document.createElement('div');
377
+ tmpDiv.innerHTML = WMS_FOOTER;
378
+ const footerStyle = document.createElement('style');
379
+ footerStyle.innerHTML = WMS_FOOTER_STYLE;
380
+ documentContainer.appendChild(footerStyle);
381
+ documentContainer.appendChild(tmpDiv.firstChild);
382
+
383
rightSidebar.classList.add("sidebar");
384
rightSidebar.appendChild(rightContent);
385
// rightContent.appendChild(rightSidebarScroll);
0 commit comments