mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 16:25:51 +01:00
feat(client): implement top launcher pane
This commit is contained in:
@@ -4,11 +4,11 @@ import appContext from "../../components/app_context.js";
|
||||
import LauncherWidget from "./launcher.js";
|
||||
|
||||
export default class LauncherContainer extends FlexContainer {
|
||||
constructor() {
|
||||
super('column');
|
||||
constructor(horizontal) {
|
||||
super(horizontal ? "row" : "column");
|
||||
|
||||
this.id('launcher-container');
|
||||
this.css('height', '100%');
|
||||
this.css(horizontal ? "width" : 'height', '100%');
|
||||
this.filling();
|
||||
|
||||
this.load();
|
||||
|
||||
Reference in New Issue
Block a user