1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-27 23:28:38 +02:00

Plugins: Allow posting messages from plugin to webview (#5569)

This commit is contained in:
agerardin
2021-11-09 10:50:50 -05:00
committed by GitHub
parent 200ba858dd
commit 6b31609338
8 changed files with 126 additions and 19 deletions

View File

@ -44,4 +44,8 @@ export default class ViewController {
console.info('Calling ViewController.emitMessage - but not implemented', event);
}
public postMessage(message: any) {
console.info('Calling ViewController.postMessage - but not implemented', message);
}
}