mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
{%- if page.quicklink.enable %}
|
|
<script src="{{ theme.vendors.quicklink }}"></script>
|
|
<script>
|
|
{%- if page.quicklink.delay %}
|
|
window.addEventListener('load', () => {
|
|
{%- endif %}
|
|
quicklink.listen({
|
|
timeout : {{ page.quicklink.timeout }},
|
|
priority: {{ page.quicklink.priority }},
|
|
ignores : [uri => uri.includes('#'),uri => uri === '{{ url | replace('index.html', '') }}',{{ page.quicklink.ignores }}]
|
|
});
|
|
{%- if page.quicklink.delay %}
|
|
});
|
|
{%- endif %}
|
|
</script>
|
|
{%- endif %}
|