From 3190a177bf64ec3b10274fdc7b1e9bc0260f0f28 Mon Sep 17 00:00:00 2001 From: Franco Petra <20055787+0xPetra@users.noreply.github.com> Date: Thu, 21 Apr 2022 18:12:38 -0300 Subject: [PATCH] FIX: Clean comment on html.js Cleaning up the comment that was breaking when running the build command: `// return Math.abs(value) < 1e-10 ? 0 : value;` --- type_templates/html.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/type_templates/html.js b/type_templates/html.js index 6d44e67..f3dee3d 100644 --- a/type_templates/html.js +++ b/type_templates/html.js @@ -99,7 +99,6 @@ export default e => { function epsilon(value) { return value; - // return Math.abs(value) < 1e-10 ? 0 : value; } function getObjectCSSMatrix( matrix, cameraCSSMatrix ) { var elements = matrix.elements; @@ -243,4 +242,4 @@ export const contentId = ${this.contentId}; export const name = ${this.name}; export const description = ${this.description}; export const type = 'html'; -export const components = ${this.components}; \ No newline at end of file +export const components = ${this.components};