diff --git a/common/static/js/home.js b/common/static/js/home.js index d32ac888..78c66924 100644 --- a/common/static/js/home.js +++ b/common/static/js/home.js @@ -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($("
  • " + v + "
  • ")); }); } @@ -242,4 +241,4 @@ $(document).ready( function() { }); } -}); \ No newline at end of file +}); diff --git a/common/static/js/mastodon.js b/common/static/js/mastodon.js index 7e62f6d5..02a54679 100644 --- a/common/static/js/mastodon.js +++ b/common/static/js/mastodon.js @@ -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 diff --git a/management/templates/management/list.html b/management/templates/management/list.html index c6f45695..fad80c22 100644 --- a/management/templates/management/list.html +++ b/management/templates/management/list.html @@ -111,10 +111,9 @@ }); // strip html tags document.querySelectorAll(".markdownx-preview").forEach(e => { - console.log($(e).text()) $(e).html($(e).text()); }); - \ No newline at end of file +