[fix](trx-frontend-http): fix bookmark markers invisible on spectrum

let-declared bmList is not a window property, so window.bmList in
app.js always returned undefined. Change to var so it lands on window;
read it via typeof guard in app.js to stay safe if bookmarks.js is absent.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-01 19:43:33 +01:00
parent 473bbb280a
commit 53da1570ec
2 changed files with 7 additions and 5 deletions
@@ -1,6 +1,6 @@
// --- Bookmarks Tab ---
let bmList = [];
var bmList = [];
let bmEditId = null;
function bmFmtFreq(hz) {