Refactoring: More cleanup of index.css

This commit is contained in:
Pieter Vander Vennet 2023-04-21 17:43:41 +02:00
parent 23b26c4197
commit 4548689a28
3 changed files with 10 additions and 299 deletions

View file

@ -14,7 +14,6 @@ export default abstract class BaseUIElement {
public onClick(f: () => void) {
this._onClick = f
this.SetClass("clickable")
if (this._constructedHtmlElement !== undefined) {
this._constructedHtmlElement.onclick = f
}