mirror of
https://github.com/9001/copyparty.git
synced 2026-03-25 17:42:54 +10:00
audioplayer: hide s-s when unavailable
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user