diff options
| author | julian laplace <julescarbon@gmail.com> | 2025-07-14 17:14:24 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2025-07-14 17:14:24 +0200 |
| commit | f968500786cc69c1afebe00625d1bd07b88603b4 (patch) | |
| tree | 5d68c7457b2afbb22752871fd5f48d93990f5eb4 /bundle.js | |
| parent | 6e53264b8fc0ed94282bcce022f07c551e925547 (diff) | |
pitched noise mode
Diffstat (limited to 'bundle.js')
| -rw-r--r-- | bundle.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -38973,7 +38973,7 @@ function toggleModus() { // rebuild(); } - modus = modus === "bandpass" ? "sine" : "bandpass"; + modus = modus === "sine" ? "bandpass" : "sine"; organ = modes[modus]; document.querySelector("#modus ." + modus).classList.add("visible"); if (intervals) { @@ -39164,7 +39164,6 @@ function bind() { document.querySelector("#help-button").addEventListener("click", function () { return document.querySelector("#help").classList.toggle("visible"); }); - // toggleModus(); toggleModus(); document.querySelector("#modus").addEventListener("click", toggleModus); Array.from(document.querySelectorAll(".mode")).forEach(function (el) { |
