remove log in js

This commit is contained in:
Te Llamas 2022-12-09 23:48:41 +00:00
parent b5c849d6b0
commit 5e036650c1
3 changed files with 2 additions and 5 deletions

View file

@ -224,7 +224,6 @@ $(document).ready( function() {
if (data.failed_urls.length > 0) {
$(".import-panel__fail-urls").show();
data.failed_urls.forEach((v, i) => {
console.log(v)
$("#failedUrls").append($("<li>" + v + "</li>"));
});
}
@ -242,4 +241,4 @@ $(document).ready( function() {
});
}
});
});

View file

@ -155,7 +155,6 @@ function getEmojiDict(emoji_list) {
}
function translateEmojis(text, emoji_list, large) {
console.log(text)
let dict = getEmojiDict(emoji_list);
let regex = /:(.*?):/g;
let translation = null

View file

@ -111,10 +111,9 @@
});
// strip html tags
document.querySelectorAll(".markdownx-preview").forEach(e => {
console.log($(e).text())
$(e).html($(e).text());
});
</script>
</body>
</html>
</html>