Skip to content

Commit

Permalink
remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
soyaine committed Jan 5, 2024
1 parent c95ff6d commit f18ef86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions build/jocker.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ class JockerCache {
const content = node.content;
const re = /#([\u4e00-\u9fa5]+)/g; // Matches Chinese characters within hashtags
let match;
if (match) {
console.log('content', content, match);
}
while ((match = re.exec(content))) {
const topic = '🥥 ' + match[1];
this.addPostToTopic(node, topic);
Expand Down Expand Up @@ -186,8 +183,6 @@ function loadPostsDefault(postsElem, nodes) {
const postElem = document.createElement("div");
postElem.setAttribute("class", `post post-${jocker.currenLayoutMode} mode-${jocker._mode}`);

console.log(post);

if (jocker._mode === 'collection') {
const userElem = document.createElement("a");
userElem.setAttribute("class", "p-user");
Expand Down
2 changes: 1 addition & 1 deletion build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Jocker Extension",
"description": "Jike Web Tool",
"version": "3.1.0",
"version": "3.1.2",
"manifest_version": 3,
"icons": {
"256": "icon256.png"
Expand Down

0 comments on commit f18ef86

Please sign in to comment.