]> git.lizzy.rs Git - rust.git/blob - error-index.js
39b371be04b95cb72884bfb35f96a4c96296efee
[rust.git] / error-index.js
1 for (const elem of document.querySelectorAll("pre.playground")) {
2     if (elem.querySelector(".compile_fail") === null) {
3         continue;
4     }
5     const child = document.createElement("div");
6     child.className = "tooltip";
7     child.textContent = "ⓘ";
8     elem.appendChild(child);
9 }