All checks were successful
Release Creation / build (release) Successful in 58s
29 lines
717 B
JavaScript
29 lines
717 B
JavaScript
import LethalFantasyItemSheet from "./base-item-sheet.mjs"
|
|
|
|
export default class LethalFantasyGiftSheet extends LethalFantasyItemSheet {
|
|
/** @override */
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["gift"],
|
|
position: {
|
|
width: 600,
|
|
},
|
|
window: {
|
|
contentClasses: ["gift-content"],
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
static PARTS = {
|
|
main: {
|
|
template: "systems/fvtt-lethal-fantasy/templates/gift.hbs",
|
|
},
|
|
}
|
|
|
|
/** @override */
|
|
async _prepareContext() {
|
|
const context = await super._prepareContext()
|
|
context.enrichedDescription = await foundry.applications.ux.TextEditor.implementation.enrichHTML(this.document.system.description, { async: true })
|
|
return context
|
|
}
|
|
}
|