Corkboard/source/js/widgets/textbox.js

11 lines
367 B
JavaScript
Raw Normal View History

2023-04-23 19:51:14 +00:00
import { pageWidget } from "../pageWidget.js";
export class Textbox extends pageWidget {
constructor(text = "") {
super("textarea", "textbox", { respectMargins: true, fillWidth: true, fillHeight: true, centerWidth: false, centerHeight: false, width: null, height: null }, true);
this.el.spellcheck = false;
this.el.value = text;
}
}