Removed unused app container
This commit is contained in:
parent
9b86110508
commit
32b4ea710b
2 changed files with 2 additions and 29 deletions
|
@ -97,40 +97,20 @@ loader.register_task(loader.Stage.SETUP, {
|
||||||
name: "page setup",
|
name: "page setup",
|
||||||
function: async () => {
|
function: async () => {
|
||||||
const body = document.body;
|
const body = document.body;
|
||||||
/* top menu */
|
|
||||||
{
|
|
||||||
const container = document.createElement("div");
|
|
||||||
container.setAttribute('id', "top-menu-bar");
|
|
||||||
body.append(container);
|
|
||||||
}
|
|
||||||
/* template containers */
|
/* template containers */
|
||||||
{
|
{
|
||||||
const container = document.createElement("div");
|
const container = document.createElement("div");
|
||||||
container.setAttribute('id', "templates");
|
container.setAttribute('id', "templates");
|
||||||
body.append(container);
|
body.append(container);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* sounds container */
|
/* sounds container */
|
||||||
{
|
{
|
||||||
const container = document.createElement("div");
|
const container = document.createElement("div");
|
||||||
container.setAttribute('id', "sounds");
|
container.setAttribute('id', "sounds");
|
||||||
body.append(container);
|
body.append(container);
|
||||||
}
|
}
|
||||||
/* mouse move container */
|
|
||||||
{
|
|
||||||
const container = document.createElement("div");
|
|
||||||
container.setAttribute('id', "mouse-move");
|
|
||||||
|
|
||||||
body.append(container);
|
|
||||||
}
|
|
||||||
/* tooltip container */
|
|
||||||
{
|
|
||||||
const container = document.createElement("div");
|
|
||||||
container.setAttribute('id', "global-tooltip");
|
|
||||||
|
|
||||||
container.append(document.createElement("a"));
|
|
||||||
|
|
||||||
body.append(container);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
priority: 10
|
priority: 10
|
||||||
});
|
});
|
||||||
|
|
|
@ -28,13 +28,6 @@ export default class implements ApplicationLoader {
|
||||||
function: async () => {
|
function: async () => {
|
||||||
const body = document.body;
|
const body = document.body;
|
||||||
|
|
||||||
/* top menu */
|
|
||||||
{
|
|
||||||
const container = document.createElement("div");
|
|
||||||
container.setAttribute('id', "top-menu-bar");
|
|
||||||
body.append(container);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* template containers */
|
/* template containers */
|
||||||
{
|
{
|
||||||
const container = document.createElement("div");
|
const container = document.createElement("div");
|
||||||
|
|
Loading…
Add table
Reference in a new issue