diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 1019c3c..9018b6c 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-catalog', - version: '1.0.84', + version: '1.0.85', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-speechbubble.ts b/ts_web/elements/dees-speechbubble.ts index 31fb608..19cb6a1 100644 --- a/ts_web/elements/dees-speechbubble.ts +++ b/ts_web/elements/dees-speechbubble.ts @@ -119,24 +119,19 @@ export class DeesSpeechbubble extends DeesElement { public render(): TemplateResult { return html` -
-
👋 Hey! We are consulting.
+
+
+
👋 Hey! We are consulting.
+
`; } - 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() {