Lines Matching full:document
13 const tooltip = document.createElement('div');
15 document.body.appendChild(tooltip);
17 const tooltipShadow = document.createElement('div');
21 /* tippy's JS code automatically adds a <style> tag to the document's <head> with the
25 const tippyStyle = document.querySelector('style[data-tippy-stylesheet]');
32 * similarly, doxytooltip.css is added to the document's <head> by the Sphinx extension, but we
35 const doxytooltipStyle = document.querySelector('link[href*="doxytooltip.css"]');
42 let links = Array.from(document.querySelectorAll('a.reference.internal')).filter((a) =>
56 document
76 const link = document.createElement('link');
133 document.addEventListener('DOMContentLoaded', registerDoxygenTooltip);