We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc79515 commit baa7803Copy full SHA for baa7803
tag/tags.js
@@ -1,9 +1,9 @@
1
-tags = new Array();
+tags = [];
2
document.querySelectorAll('#all-topic-tags>a').forEach(function (e) {
3
tags.push({
4
"Name": e.title || e.firstElementChild.innerText.trim(),
5
"Slug": /tag\/(\S+?)\//.exec(e.href)[1],
6
- "TranslatedName": e.innerText.trim().replace(/\n/g, '')
+ "TranslatedName": e.innerText.trim().replace(/\n/g, ''),
7
});
8
9
newWindow = window.open('', 'frame_name');
0 commit comments