fix: fixed js files load error
This commit is contained in:
parent
3b86b69f55
commit
bb7e05d174
|
@ -10,11 +10,11 @@
|
|||
history: true,
|
||||
debug: false,
|
||||
cacheBust: false,
|
||||
timeout: 0,
|
||||
// analytics: false,
|
||||
// currentUrlFullReload: false,
|
||||
// scrollRestoration: false,
|
||||
// scrollTo: true,
|
||||
// timeout: 0,
|
||||
});
|
||||
|
||||
window.addEventListener('pjax:complete', () => {
|
||||
|
|
|
@ -40,6 +40,7 @@ hexo.extend.helper.register('export_config', function () {
|
|||
toc: theme.toc,
|
||||
style: theme.style,
|
||||
local_search: theme.local_search,
|
||||
code_copy: theme.code_copy,
|
||||
side_tools: theme.side_tools,
|
||||
pjax: theme.pjax,
|
||||
version: theme.version,
|
||||
|
|
|
@ -11,9 +11,15 @@ window.addEventListener('DOMContentLoaded', () => {
|
|||
KEEP.initUtils();
|
||||
KEEP.initHeaderShrink();
|
||||
KEEP.initModeToggle();
|
||||
KEEP.initLocalSearch();
|
||||
KEEP.initBack2Top();
|
||||
KEEP.initCodeCopy();
|
||||
|
||||
if (KEEP.theme_config.local_search.enable === true) {
|
||||
KEEP.initLocalSearch();
|
||||
}
|
||||
|
||||
if (KEEP.theme_config.code_copy.enable === true) {
|
||||
KEEP.initCodeCopy();
|
||||
}
|
||||
}
|
||||
|
||||
KEEP.refresh();
|
||||
|
|
Loading…
Reference in New Issue