mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
Update changyan comments
This commit is contained in:
parent
924318a19d
commit
bfa9a75440
14
layout/_third-party/comments/changyan.njk
vendored
14
layout/_third-party/comments/changyan.njk
vendored
@ -3,14 +3,12 @@
|
|||||||
{% elif page.comments %}
|
{% elif page.comments %}
|
||||||
<script>
|
<script>
|
||||||
NexT.utils.loadComments(document.querySelector('#SOHUCS'), () => {
|
NexT.utils.loadComments(document.querySelector('#SOHUCS'), () => {
|
||||||
var appid = '{{ theme.changyan.appid }}';
|
NexT.utils.getScript('https://changyan.sohu.com/upload/changyan.js', () => {
|
||||||
var conf = '{{ theme.changyan.appkey }}';
|
window.changyan.api.config({
|
||||||
var width = window.innerWidth || document.documentElement.clientWidth;
|
appid: '{{ theme.changyan.appid }}',
|
||||||
if (width < 960) {
|
conf : '{{ theme.changyan.appkey }}'
|
||||||
window.document.write('<script id="changyan_mobile_js" charset="utf-8" type="text/javascript" src="https://changyan.sohu.com/upload/mobile/wap-js/changyan_mobile.js?client_id=' + appid + '&conf=' + conf + '"><\/script>');
|
});
|
||||||
} else {
|
});
|
||||||
var loadJs=function(d,a){var c=document.getElementsByTagName("head")[0]||document.head||document.documentElement;var b=document.createElement("script");b.setAttribute("type","text/javascript");b.setAttribute("charset","UTF-8");b.setAttribute("src",d);if(typeof a==="function"){if(window.attachEvent){b.onreadystatechange=function(){var e=b.readyState;if(e==="loaded"||e==="complete"){b.onreadystatechange=null;a()}}}else{b.onload=a}}c.appendChild(b)};loadJs("https://changyan.sohu.com/upload/changyan.js",function(){window.changyan.api.config({appid:appid,conf:conf})});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script src="https://assets.changyan.sohu.com/upload/plugins/plugins.count.js"></script>
|
<script src="https://assets.changyan.sohu.com/upload/plugins/plugins.count.js"></script>
|
||||||
|
|||||||
@ -187,12 +187,12 @@ NexT.utils = {
|
|||||||
// Prevent selected tab to select again.
|
// Prevent selected tab to select again.
|
||||||
if (element.classList.contains('active')) return;
|
if (element.classList.contains('active')) return;
|
||||||
// Add & Remove active class on `nav-tabs` & `tab-content`.
|
// Add & Remove active class on `nav-tabs` & `tab-content`.
|
||||||
element.parentNode.childNodes.forEach(target => {
|
[...element.parentNode.children].forEach(target => {
|
||||||
target.classList.toggle('active', target === element);
|
target.classList.toggle('active', target === element);
|
||||||
});
|
});
|
||||||
// https://stackoverflow.com/questions/20306204/using-queryselector-with-ids-that-are-numbers
|
// https://stackoverflow.com/questions/20306204/using-queryselector-with-ids-that-are-numbers
|
||||||
const tActive = document.getElementById(element.querySelector('a').getAttribute('href').replace('#', ''));
|
const tActive = document.getElementById(element.querySelector('a').getAttribute('href').replace('#', ''));
|
||||||
tActive.parentNode.childNodes.forEach(target => {
|
[...tActive.parentNode.children].forEach(target => {
|
||||||
target.classList.toggle('active', target === tActive);
|
target.classList.toggle('active', target === tActive);
|
||||||
});
|
});
|
||||||
// Trigger event
|
// Trigger event
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user