mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
20 lines
519 B
TypeScript
20 lines
519 B
TypeScript
import { ResizableWidget } from "./ResizableWidget";
|
|
import { UnavailableView } from "../../quest_editor/gui/UnavailableView";
|
|
import "./ErrorView.css";
|
|
import { div } from "./dom";
|
|
|
|
export class ErrorView extends ResizableWidget {
|
|
readonly element: HTMLElement;
|
|
|
|
constructor(message: string) {
|
|
super();
|
|
|
|
this.element = div(
|
|
{ className: "core_ErrorView" },
|
|
this.disposable(new UnavailableView(message)).element,
|
|
);
|
|
|
|
this.finalize_construction();
|
|
}
|
|
}
|