tweak plugin initialization to enable multi-instance plugins

This commit is contained in:
Hakim El Hattab
2020-04-17 14:10:56 +02:00
parent 7e72b10fa5
commit e58502b3fb
20 changed files with 128 additions and 110 deletions

View File

@ -9,7 +9,7 @@
* 3. This window proceeds to send the current presentation state
* to the notes window
*/
var RevealNotes = (function() {
let Plugin = (function() {
var notesPopup = null;
@ -182,4 +182,4 @@ var RevealNotes = (function() {
})();
export default RevealNotes;
export default () => Plugin;