From 542d2d1e9ad9b8169fa955cc415fccd3cd134c65 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Tue, 22 Jan 2019 21:18:03 +0200 Subject: [PATCH] typescript(translucid): testing automated update Signed-off-by: prescientmoon --- typescript/translucid/Translucid.js | 1 + typescript/translucid/Translucid.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/typescript/translucid/Translucid.js b/typescript/translucid/Translucid.js index 2f8e50b..557784a 100644 --- a/typescript/translucid/Translucid.js +++ b/typescript/translucid/Translucid.js @@ -26,6 +26,7 @@ class Translucid { for (let i in object) { const classes = object[i].classes || []; this.bind(i, object[i].file, classes); + //gotta comment this later console.log(`Binded room with name ${i} and path ${object[i].file} with classes ${classes}`); } } diff --git a/typescript/translucid/Translucid.ts b/typescript/translucid/Translucid.ts index b5d3819..8d0a6a3 100644 --- a/typescript/translucid/Translucid.ts +++ b/typescript/translucid/Translucid.ts @@ -31,6 +31,7 @@ class Translucid { for (let i in object){ const classes = object[i].classes || []; this.bind(i,object[i].file,classes); + //gotta comment this later console.log(`Binded room with name ${i} and path ${object[i].file} with classes ${classes}`) } }