Skip to content

Commit c4995a9

Browse files
committed
fix: remove sticky script
1 parent 50eda52 commit c4995a9

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

_layouts/post.html

-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ <h3>{{ post.title }}</h3>
189189
</main>
190190
{% include footer.html %}
191191

192-
<script src="/scripts/stickyfill.js"></script>
193192
<script src="/scripts/linkjuice/dist/linkjuice.js"></script>
194193
<script src="/scripts/main.js"></script>
195194
</body>

scripts/main.js

+1-16
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,5 @@
55
selector: ['h2', 'h3'],
66
icon: ''
77
});
8-
9-
var stickyElements = doc.querySelectorAll('.is-sticky');
10-
11-
for (var i = stickyElements.length - 1; i >= 0; i--) {
12-
var el = stickyElements[i];
13-
14-
if (el.classList.contains('thtrm-toc')) {
15-
el.classList.add('thtrm-toc--sticky');
16-
el.classList.add('thtrm-toc--faded');
17-
}
18-
if (el.classList.contains('thtrm-ad')) {
19-
el.classList.add('thtrm-ad--sticky');
20-
el.classList.add('thtrm-ad--description');
21-
}
22-
Stickyfill.add(el);
23-
}
8+
249
}(document, window));

0 commit comments

Comments
 (0)