Skip to content

Commit 1d15ef1

Browse files
committed
delete footer acording to new layout
1 parent 3595a85 commit 1d15ef1

2 files changed

Lines changed: 2 additions & 43 deletions

File tree

src/mainPage/footer.ts

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/mainPage/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
/* Main Page
22
**
3-
** This code is called in mashlib and renders the header and footer of the Databrowser.
3+
** This code is called in mashlib and renders the header and left side menu of the Databrowser.
44
*/
55

66
import { LiveStore, NamedNode } from 'rdflib'
77
import type { RenderEnvironment } from 'pane-registry'
88
import { getOutliner, OutlineManager } from '../index'
99
import { createHeader } from './header'
10-
import { createFooter } from './footer'
1110
import { createLeftSideMenu, refreshMenu } from './menu'
1211

1312
// Symbol used to stash the last render-relevant env snapshot on the outliner
@@ -48,8 +47,7 @@ export async function initMainPage (
4847

4948
const header = await createHeader(outliner)
5049
const menu = createLeftSideMenu(subject, outliner)
51-
const footer = menu.then(() => createFooter(store))
52-
return Promise.all([header, menu, footer])
50+
return Promise.all([header, menu])
5351
}
5452

5553
export async function refreshUI (outliner: OutlineManager) {

0 commit comments

Comments
 (0)