put tabContext into frontend script API

This commit is contained in:
zadam
2019-05-29 21:48:48 +02:00
parent 890c00d4ba
commit 012a18be00
5 changed files with 6 additions and 6 deletions

View File

@@ -29,7 +29,7 @@ async function executeStartupBundles() {
}
}
async function executeRelationBundles(note, relationName) {
async function executeRelationBundles(note, relationName, tabContext) {
note.bundleCache = note.bundleCache || {};
if (!note.bundleCache[relationName]) {
@@ -37,7 +37,7 @@ async function executeRelationBundles(note, relationName) {
}
for (const bundle of note.bundleCache[relationName]) {
await executeBundle(bundle, note);
await executeBundle(bundle, note, tabContext);
}
}