Working on Compatibility for FVTT v10

Updated compendium for content-link (added an uuid)
Journal activateListeners -> _activatePageListeners
This commit is contained in:
Vlyan
2022-07-23 19:04:33 +02:00
parent c7476a42c2
commit 096429d2f8
8 changed files with 282 additions and 281 deletions

View File

@@ -54,11 +54,12 @@ export class BaseJournalSheetL5r5e extends JournalSheet {
}
/**
* Subscribe to events from the sheet.
* @param {jQuery} html HTML content of the sheet.
* Activate listeners after page content has been injected.
* @protected
*/
activateListeners(html) {
super.activateListeners(html);
_activatePageListeners() {
super._activatePageListeners();
const html = this.element;
// Commons
game.l5r5e.HelpersL5r5e.commonListeners(html);