forked from MapComplete/MapComplete
Lot's of small improvements
This commit is contained in:
parent
9bd37d9cde
commit
8bca006787
29 changed files with 375 additions and 173 deletions
16
UI/Base/FixedUiElement.ts
Normal file
16
UI/Base/FixedUiElement.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
import {UIElement} from "../UIElement";
|
||||
|
||||
export class FixedUiElement extends UIElement {
|
||||
private _html: string;
|
||||
|
||||
constructor(html: string) {
|
||||
super(undefined);
|
||||
this._html = html;
|
||||
}
|
||||
|
||||
protected InnerRender(): string {
|
||||
return this._html;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue