You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
www_admin/root/js/openclose.js

11 lines
253 B

oc = "open";
function openclose() {
if (oc == "open") {
document.getElementById('lock_menu').style.display = 'inline';
oc = "close";
} else {
document.getElementById('lock_menu').style.display = 'none';
oc = "open";
}
}