dont toggle panes note on the first load

This commit is contained in:
azivner
2018-12-29 10:19:28 +01:00
parent 2f680c4326
commit e02eca87b0
2 changed files with 12 additions and 2 deletions

View File

@@ -23,6 +23,8 @@ function togglePanes() {
$closeDetailButton.click(togglePanes);
let firstLoad = true;
async function showTree() {
const tree = await treeService.loadTree();
@@ -39,7 +41,13 @@ async function showTree() {
treeService.clearSelectedNodes();
treeService.setCurrentNotePathToHash(node);
togglePanes();
if (!firstLoad) {
togglePanes();
}
else {
firstLoad = false;
}
noteDetailService.switchToNote(noteId, true);
},