mirror of
https://github.com/kaka111222333/kaka111222333.github.io.git
synced 2025-12-21 17:25:07 +08:00
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
---
|
|
layout: null
|
|
---
|
|
|
|
/**
|
|
* 页面ready方法
|
|
*/
|
|
$(document).ready(function() {
|
|
generateContent();
|
|
// share();
|
|
gitment();
|
|
});
|
|
|
|
/**
|
|
* 侧边目录
|
|
*/
|
|
function generateContent() {
|
|
var $mt = $('.toc');
|
|
var toc = $(".post ul#markdown-toc").clone().get(0);
|
|
$mt.each(function(i,o){
|
|
$(o).html(toc);
|
|
});
|
|
}
|
|
|
|
function share(){
|
|
window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"1","bdSize":"24"},"share":{}};
|
|
with(document)0[getElementsByTagName("script")[0].parentNode.appendChild(createElement('script')).src='//bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];
|
|
}
|
|
|
|
|
|
function gitment() {
|
|
var gitment = new Gitment({
|
|
id: window.location.pathname,
|
|
owner: '{{site.github.username}}',
|
|
repo: '{{site.gitment.repo}}',
|
|
oauth: {
|
|
client_id: '{{site.gitment.client_id}}',
|
|
client_secret: '{{site.gitment.client_secret}}',
|
|
},
|
|
});
|
|
gitment.render('post-comment')
|
|
$("#post-comment").removeClass('hidden');
|
|
}
|
|
|
|
|