From 4dc9e04c2e7aed54c3a8ac87d47e082d9729ca4f Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 17 Aug 2022 19:28:11 +0200 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/dees-mobilenavigation.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 8bb4292..71dc722 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.96', + version: '1.0.97', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-mobilenavigation.ts b/ts_web/elements/dees-mobilenavigation.ts index 6813dfd..942ccb9 100644 --- a/ts_web/elements/dees-mobilenavigation.ts +++ b/ts_web/elements/dees-mobilenavigation.ts @@ -10,12 +10,12 @@ import { } from '@designestate/dees-element'; import { DeesWindowLayer } from './dees-windowlayer.js'; -@customElement('lele-mobilenavigation') -export class LeleMobilenavigation extends DeesElement { - private static singletonRef: LeleMobilenavigation; +@customElement('dees-mobilenavigation') +export class DeesMobilenavigation extends DeesElement { + private static singletonRef: DeesMobilenavigation; public static async createAndInit(menuItemsArg: plugins.tsclass.website.IMenuItem[]) { if (!this.singletonRef) { - this.singletonRef = new LeleMobilenavigation(); + this.singletonRef = new DeesMobilenavigation(); document.body.append(this.singletonRef); await this.singletonRef.init(); }