2024-08-31 17:01:31 +00:00
|
|
|
export class BoostTileElement extends HTMLElement {
|
|
|
|
|
|
|
|
static observedAttributes = [ "data-boostid", "data-msgid", "data-author", "data-booster" ];
|
|
|
|
|
|
|
|
constructor() {
|
2024-12-01 21:08:02 +00:00
|
|
|
super();
|
2024-08-31 17:01:31 +00:00
|
|
|
this.innerHTML = "<div class='boost_booster'></div><div class='boost_author'></div><div class='boost_content'></div>";
|
|
|
|
}
|
|
|
|
|
|
|
|
connectedCallback() {
|
|
|
|
}
|
|
|
|
|
|
|
|
attributeChangedCallback(attr: string, prev: string, next: string) {
|
|
|
|
}
|
|
|
|
}
|