Mimi d248a3f9a6
Refactor vendors (#72)
* Compatibility with `@next-theme/plugins`

* Update test cases
2020-08-02 11:04:04 +08:00

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 %}