mirror of
https://github.com/9001/copyparty.git
synced 2026-02-26 05:23:10 -07:00
audioplayer: hide s-s when unavailable
This commit is contained in:
parent
bf01ca4891
commit
756494a1c3
|
|
@ -2730,7 +2730,10 @@ var afilt = (function () {
|
|||
};
|
||||
|
||||
function setvis(vis) {
|
||||
ebi('audio_eq').parentNode.style.display = ebi('audio_drc').parentNode.style.display = (vis ? '' : 'none');
|
||||
ebi('audio_eq').parentNode.style.display =
|
||||
ebi('audio_drc').parentNode.style.display =
|
||||
ebi('audio_ss').parentNode.style.display =
|
||||
(vis ? '' : 'none');
|
||||
}
|
||||
|
||||
setvis(ACtx);
|
||||
|
|
|
|||
Loading…
Reference in a new issue