1
0
This commit is contained in:
Zef Hemel 2022-07-18 16:48:36 +02:00
parent 363a11a264
commit 0abf043652
2 changed files with 4 additions and 1 deletions

View File

@ -12,4 +12,5 @@ functions:
events:
- plug:load
- editor:updated
- editor:pageSwitched
- editor:pageLoaded
- editor:pageReloaded

View File

@ -582,6 +582,8 @@ export class Editor {
if (loadingDifferentPage) {
await this.eventHook.dispatchEvent("editor:pageLoaded", pageName);
} else {
await this.eventHook.dispatchEvent("editor:pageReloaded", pageName);
}
}