mirror of
https://github.com/captbaritone/webamp.git
synced 2026-08-02 15:03:53 +00:00
Disable band while we wait for Safari to fix their bug.
This commit is contained in:
parent
2a3e59f160
commit
9408e5b95f
2 changed files with 4 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
import {
|
||||
top,
|
||||
bottom,
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ module.exports = {
|
|||
this._leftGain.connect(this._chanMerge, 0, 0);
|
||||
this._rightGain.connect(this._chanMerge, 0, 1);
|
||||
|
||||
let output = this._chanMerge;
|
||||
const output = this._chanMerge;
|
||||
this.bands = {};
|
||||
|
||||
BANDS.forEach((band, i) => {
|
||||
|
|
@ -96,8 +96,11 @@ module.exports = {
|
|||
}
|
||||
filter.frequency.value = band;
|
||||
filter.gain.value = 0;
|
||||
/*
|
||||
Disable this while we wait for Safari to fix its bug.
|
||||
output.connect(filter);
|
||||
output = filter;
|
||||
*/
|
||||
});
|
||||
|
||||
output.connect(this._gainNode);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue