This commit is contained in:
e2002
2022-03-08 12:23:04 +03:00
parent 42ea7d9df8
commit 0778a4a821
3 changed files with 8 additions and 4 deletions

View File

@@ -165,12 +165,12 @@ function onRangeBalChange(el){
}
function showSettings(){
document.getElementById('pleditorwrap').hidden=true;
document.getElementById('equalizerbg').hidden=true;
document.getElementById('equalizerbg').setAttribute('class','hidden');
document.getElementById('settings').hidden=false;
}
function showEditor(){
document.getElementById('settings').hidden=true;
document.getElementById('equalizerbg').hidden=true;
document.getElementById('equalizerbg').setAttribute('class','hidden');
initPLEditor();
document.getElementById('pleditorwrap').hidden=false;
}