fixes and removing logs
This commit is contained in:
parent
6a7a7a15e4
commit
4e3f3a1058
2 changed files with 1 additions and 3 deletions
|
@ -26,7 +26,7 @@ gulp.task("copy-assets", () => {
|
||||||
"src/**/*.jpeg",
|
"src/**/*.jpeg",
|
||||||
"src/**/*.gif",
|
"src/**/*.gif",
|
||||||
"src/**/*.svg",
|
"src/**/*.svg",
|
||||||
])
|
],{encoding:false})
|
||||||
.pipe(gulp.dest("dist"));
|
.pipe(gulp.dest("dist"));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,6 @@ class Emoji{
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
this.emojis = build;
|
this.emojis = build;
|
||||||
console.log(build);
|
|
||||||
}
|
}
|
||||||
static grabEmoji(){
|
static grabEmoji(){
|
||||||
fetch("/emoji.bin")
|
fetch("/emoji.bin")
|
||||||
|
@ -123,7 +122,6 @@ class Emoji{
|
||||||
return e.arrayBuffer();
|
return e.arrayBuffer();
|
||||||
})
|
})
|
||||||
.then(e=>{
|
.then(e=>{
|
||||||
console.log(e);
|
|
||||||
Emoji.decodeEmojiList(e);
|
Emoji.decodeEmojiList(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue