This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create checkbox to hide preview rules | |
var checkbox = document.createElement("input"); | |
checkbox.type = "checkbox"; | |
checkbox.checked = true; | |
checkbox.addEventListener("change", function () { | |
for (var span of document.querySelectorAll( | |
'span[title="Rule is in preview"]', | |
)) { | |
span.closest("tr").style.display = event.currentTarget.checked | |
? null |
OlderNewer