dream2nix/website/no-edit-options.js

8 lines
188 B
JavaScript
Raw Normal View History

2023-10-10 17:18:09 +03:00
if (window.location.pathname.match(/options/)) {
var buttons = document.querySelector("#menu-bar > div.right-buttons")
if (buttons != null) {
buttons.style.display = "none"
}
}