Remove prototype code that shouldn't be committed on main yet

This commit is contained in:
Oliver-Akins 2024-03-25 21:24:32 -06:00
parent 97af3801c4
commit 6504e33fad

View file

@ -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() {