mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-10 02:02:29 +08:00
get rid of timeouts that aren't needed anymore
This commit is contained in:
parent
005ddc4a59
commit
59e77407e2
@ -28,16 +28,6 @@ bundleService.getWidgetBundlesByParent().then(async (widgetBundles) => {
|
||||
});
|
||||
console.error("Critical error occured", e);
|
||||
});
|
||||
|
||||
// Initialize right pane tab manager after layout is loaded
|
||||
setTimeout(() => {
|
||||
const $tabContainer = $("#right-pane-tab-container");
|
||||
const $contentContainer = $("#right-pane-content-container");
|
||||
|
||||
if ($tabContainer.length && $contentContainer.length) {
|
||||
rightPaneTabManager.init($tabContainer, $contentContainer);
|
||||
}
|
||||
}, 1000);
|
||||
});
|
||||
|
||||
glob.setupGlobs();
|
||||
|
@ -105,16 +105,6 @@ export default class DesktopLayout {
|
||||
getRootWidget(appContext: AppContext) {
|
||||
appContext.noteTreeWidget = new NoteTreeWidget();
|
||||
|
||||
// Initialize the right pane tab manager after widget render
|
||||
setTimeout(() => {
|
||||
const $tabContainer = $("#right-pane-tab-container");
|
||||
const $contentContainer = $("#right-pane-content-container");
|
||||
|
||||
if ($tabContainer.length && $contentContainer.length) {
|
||||
rightPaneTabManager.init($tabContainer, $contentContainer);
|
||||
}
|
||||
}, 500);
|
||||
|
||||
const launcherPaneIsHorizontal = options.get("layoutOrientation") === "horizontal";
|
||||
const launcherPane = this.#buildLauncherPane(launcherPaneIsHorizontal);
|
||||
const isElectron = utils.isElectron();
|
||||
|
Loading…
x
Reference in New Issue
Block a user