...
This commit is contained in:
parent
1d0fc20677
commit
88bf4cdbce
2 changed files with 13 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -3,4 +3,4 @@ web/admin/crawler/currinst.job
|
|||
web/admin/crawler/instances.job
|
||||
web/admin/crawler/instances.json
|
||||
vendor
|
||||
composer.lock
|
||||
composer.lock
|
||||
|
|
12
web/admin/js/menu.js
Normal file
12
web/admin/js/menu.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
function chulsh(el,sh) {
|
||||
if (sh)
|
||||
el.querySelector('ul').style.display='block';
|
||||
else
|
||||
el.querySelector('ul').style.display='none';
|
||||
}
|
||||
function ulsh(el,sh) {
|
||||
if (sh)
|
||||
el.style.display='block';
|
||||
else
|
||||
el.style.display='none';
|
||||
}
|
Loading…
Reference in a new issue