From 6504e33fad95649d8a18b254f42f03569d04f9a2 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 25 Mar 2024 21:24:32 -0600 Subject: [PATCH] Remove prototype code that shouldn't be committed on main yet --- module/sheets/MobSheet.mjs | 9 --------- 1 file changed, 9 deletions(-) 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() {