From a787981f573accb58a9e29ea9673db3c47bd2d5d Mon Sep 17 00:00:00 2001 From: David Allemang Date: Tue, 7 Jul 2026 16:19:15 -0400 Subject: [PATCH] remove console log --- src/components.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components.js b/src/components.js index 973ecaae..4729f03c 100644 --- a/src/components.js +++ b/src/components.js @@ -84,14 +84,12 @@ export class MCDioramaElement extends HTMLElement { if (this.hasAttribute('phi')) diorama.phi = parseFloat(this.getAttribute('phi')); if (this.hasAttribute('target')) { - console.log('target:', this.getAttribute('target')); const [x, y, z] = this.getAttribute('target').trim().split(/\s+/); diorama.target = [ parseFloat(x), parseFloat(y), parseFloat(z), ]; - console.log('target:', diorama.target); } else { diorama.centerView(); } @@ -134,4 +132,4 @@ export class MCDioramaElement extends HTMLElement { // Register Elements customElements.define('mc-world', MCWorldElement); customElements.define('mc-frame', MCFrameElement); -customElements.define('mc-diorama', MCDioramaElement); \ No newline at end of file +customElements.define('mc-diorama', MCDioramaElement);