This commit is contained in:
zadam
2020-01-24 22:30:17 +01:00
parent 7d9b720ea8
commit 7a62d1636b
18 changed files with 44 additions and 71 deletions

View File

@@ -105,7 +105,7 @@ class AppContext {
new TabCachingWidget(this, () => new LinkMapWidget(this)),
new TabCachingWidget(this, () => new NoteRevisionsWidget(this)),
new TabCachingWidget(this, () => new SimilarNotesWidget(this)),
new TabCachingWidget(this, () => new WhatLinksHereWidget(this)),
new TabCachingWidget(this, () => new WhatLinksHereWidget(this))
];
for (const widget of rightPaneWidgets) {
@@ -320,7 +320,7 @@ class AppContext {
this.activeTabId = tabId;
this.trigger('activeTabChanged', { oldActiveTabId });
this.trigger('activeTabChanged', { oldActiveTabId, newActiveTabId: tabId });
}
newTabListener() {