PluginProbe
404 Solution / 4.3.3
404 Solution v4.3.3
4.3.5 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 4.2.0 4.1.19 4.1.18 4.1.17 4.1.16 4.1.15 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.1.7 4.1.6 4.1.5 4.1.4 4.1.3 trunk 2.30.0 All 109 releases
404-solution / includes / html / viewLogsTraceToggleScript.html

viewLogsTraceToggleScript.html in 404 Solution 4.3.3, at includes/html/viewLogsTraceToggleScript.html

18 lines 674 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <script>
2 (function() {
3 if (window._abj404TraceToggleInit) { return; }
4 window._abj404TraceToggleInit = true;
5 document.addEventListener("click", function(e) {
6 var btn = e.target;
7 if (!btn || !btn.classList || !btn.classList.contains("abj404-trace-toggle")) { return; }
8 var rowId = btn.getAttribute("data-row-id");
9 if (!rowId) { return; }
10 var detail = document.getElementById("abj404-trace-" + rowId);
11 if (!detail) { return; }
12 var visible = detail.style.display !== "none";
13 detail.style.display = visible ? "none" : "";
14 btn.textContent = visible ? "\u25B6" : "\u25BC";
15 });
16 }());
17 </script>
18