diff --git a/module/sheets/MobSheet.mjs b/module/sheets/MobSheet.mjs index cb6412c..b2ecc06 100644 --- a/module/sheets/MobSheet.mjs +++ b/module/sheets/MobSheet.mjs @@ -1,6 +1,5 @@ import { GenericActorSheet } from "./GenericActorSheet.mjs"; import { DiceList } from "../dialogs/DiceList.mjs"; -import { PopoutTextEditor } from "../dialogs/PopoutTextEditor.mjs"; export class MobSheet extends GenericActorSheet { static get defaultOptions() { @@ -28,14 +27,6 @@ export class MobSheet extends GenericActorSheet { let d = new DiceList(this.actor); d.render(true); }); - html.find(`[data-text-editor]`) - .on(`click`, () => { - let editor = new PopoutTextEditor( - this.actor, - `system.description` - ); - editor.render(true); - }); }; async getData() {