blob: c14fce920e745fd2ea0bf95f2f90ca7c6908db13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/* globals i18n */
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.head.insertAdjacentHTML('beforeend', `
<meta name="darkreader-lock">
`);
}
let asideNav;
window.addEventListener('beforeunload', () => {
sessionStorage.setItem('sidebar_scrollTop', asideNav.scrollTop);
});
window.addEventListener('keydown', (e) => {
if (e.key === 'Escape') {
location.hash = 'close';
}
});
document.addEventListener('DOMContentLoaded', () => {
asideNav = document.querySelector('aside > nav.docs');
const sidebar_scrollTop = sessionStorage.getItem('sidebar_scrollTop');
if (sidebar_scrollTop) {
asideNav.scrollTo(0, sidebar_scrollTop);
sessionStorage.removeItem('sidebar_scrollTop');
}
for (const el of document.querySelectorAll('div.highlight')) {
/* eslint-disable @stylistic/max-len */
el.insertAdjacentHTML('afterbegin', `
<button class="copy" title="${i18n.copy_to_clipboard}">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z"/>
<path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z"/>
</svg>
</button>
`);
/* eslint-enable @stylistic/max-len */
const copyBtn = el.querySelector('button.copy');
copyBtn.addEventListener('click', () => {
const snippet = el.querySelector('code').innerText;
if (navigator.clipboard) {
navigator.clipboard.writeText(snippet);
} else {
// Fallback if no HTTPS
const input = document.createElement('textarea');
input.innerHTML = snippet;
document.body.append(input);
input.select();
document.execCommand('copy');
input.remove();
}
});
}
for (const el of document.querySelectorAll('img')) {
if (el.parentNode.tagName !== 'A') {
el.outerHTML = `<a href="${el.getAttribute('src')}">${el.outerHTML}</a>`;
}
}
});
|