Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-03-09 22:37:27 +0300
committerDillon <dillonzq@outlook.com>2020-03-09 22:37:27 +0300
commit7f228d61343a37850082deaaee2a1ac3f0d5f061 (patch)
tree28deb10744f036d78ced1de12cc57179c1626baf /src
parent426e24598d4cfadeedf2c3177d1137c62753d79c (diff)
fix(typeit): fix a TypeIt header link style bug
Diffstat (limited to 'src')
-rw-r--r--src/js/theme.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/theme.js b/src/js/theme.js
index 141ad3d..0333d13 100644
--- a/src/js/theme.js
+++ b/src/js/theme.js
@@ -96,7 +96,7 @@
for (let num = 1; num <= 6; num++) {
this.util.forEach(document.querySelectorAll('.page.single .content > h' + num), (header) => {
header.classList.add('headerLink');
- header.innerHTML = `<a href="#${header.id}"></a>${header.innerHTML}`;
+ header.innerHTML = `<a href="#${header.id}" class="header-mark"></a>${header.innerHTML}`;
});
}
}