1
Fork 0

typescript(translucid): testing automated update

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-01-22 21:18:03 +02:00 committed by prescientmoon
parent 1a457d4ec7
commit 542d2d1e9a
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
2 changed files with 2 additions and 0 deletions

View file

@ -26,6 +26,7 @@ class Translucid {
for (let i in object) { for (let i in object) {
const classes = object[i].classes || []; const classes = object[i].classes || [];
this.bind(i, object[i].file, 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}`); console.log(`Binded room with name ${i} and path ${object[i].file} with classes ${classes}`);
} }
} }

View file

@ -31,6 +31,7 @@ class Translucid {
for (let i in object){ for (let i in object){
const classes = object[i].classes || []; const classes = object[i].classes || [];
this.bind(i,object[i].file,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}`) console.log(`Binded room with name ${i} and path ${object[i].file} with classes ${classes}`)
} }
} }