From 5f745d2216d38fc3a507998212776e0c1d5b0e50 Mon Sep 17 00:00:00 2001 From: byrongamatos Date: Tue, 23 Jun 2026 11:37:08 +0200 Subject: [PATCH] fix(loop-in-3d): use canonical window.feedBack namespace (post-#537) The new song:ready loop-applier landed on the legacy window.slopsmith alias because the branch predated the slopsmith->feedBack rename (#537). Normalize it to window.feedBack like the rest of core; the alias would have worked but leaves the lone slopsmith reference in the file. Co-Authored-By: Claude Opus 4.8 (1M context) --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index 7773cc4..e8d44df 100644 --- a/static/app.js +++ b/static/app.js @@ -5764,7 +5764,7 @@ window.feedBack.on('song:ready', () => { // calls playSong(). Once the chart is ready (playSong's own clearLoop() has // already run, so the loop won't be wiped), arm the loop over the selected // region and start playback so the user lands inside the loop directly. -window.slopsmith.on('song:ready', () => { +window.feedBack.on('song:ready', () => { _updateEditRegionBtn(); const pend = window._pendingHighwayLoop; if (!pend) return;