mirror of
https://github.com/apachecn/eloquent-js-3e-zh.git
synced 2025-05-29 08:12:22 +00:00
13 lines
412 B
JavaScript
13 lines
412 B
JavaScript
(function(){
|
|
var plugin = function(hook) {
|
|
hook.doneEach(function() {
|
|
new Image().src =
|
|
'//api.share.baidu.com/s.gif?r=' +
|
|
encodeURIComponent(document.referrer) +
|
|
"&l=" + encodeURIComponent(location.href)
|
|
})
|
|
}
|
|
var plugins = window.$docsify.plugins || []
|
|
plugins.push(plugin)
|
|
window.$docsify.plugins = plugins
|
|
})() |