fix(core): update
This commit is contained in:
@@ -119,24 +119,19 @@ export class DeesSpeechbubble extends DeesElement {
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
<div class="arrow"></div>
|
||||
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||
<div class="container" @click=${this.handleClick}>
|
||||
<div class="arrow"></div>
|
||||
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
public async dispatchClick() {
|
||||
public async handleClick() {
|
||||
if (this.disabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.dispatchEvent(
|
||||
new CustomEvent('clicked', {
|
||||
detail: {
|
||||
data: null,
|
||||
},
|
||||
bubbles: true,
|
||||
})
|
||||
);
|
||||
globalThis.location.href = "https://lossless.consulting"
|
||||
}
|
||||
|
||||
public async firstUpdated() {
|
||||
|
Reference in New Issue
Block a user