Skip to content

Commit 2f7e160

Browse files
fix(crowdin): add ignore class (#217)
1 parent aacbeb7 commit 2f7e160

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/js/projects.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ $(document).ready(function(){
109109
})
110110

111111
let star_link = document.createElement("a")
112-
star_link.className = "nav-link nav-link-sm text-white ms-3"
112+
star_link.className = "nav-link nav-link-sm text-white ms-3 crowdin-ignore"
113113
star_link.href = `https://star-history.com/#${sorted[repo]['full_name']}`
114114
star_link.target = "_blank"
115115
star_link.textContent = window.formatNumber(sorted[repo]['stargazers_count'])
@@ -120,7 +120,7 @@ $(document).ready(function(){
120120
star_link.prepend(star_link_image)
121121

122122
let fork_link = document.createElement("a")
123-
fork_link.className = "nav-link nav-link-sm text-white ms-3"
123+
fork_link.className = "nav-link nav-link-sm text-white ms-3 crowdin-ignore"
124124
fork_link.href = `https://github.com/${sorted[repo]['full_name']}/network/members`
125125
fork_link.target = "_blank"
126126
fork_link.textContent = window.formatNumber(sorted[repo]['forks'])

0 commit comments

Comments
 (0)