remove log in js
This commit is contained in:
parent
b5c849d6b0
commit
5e036650c1
3 changed files with 2 additions and 5 deletions
|
@ -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() {
|
|||
});
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue