@bobfrankston/rmfmail 1.2.210 → 1.2.211

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/app.js CHANGED
@@ -3310,6 +3310,21 @@ onWsEvent((event) => {
3310
3310
  const slot = document.querySelector(".folder-loading");
3311
3311
  if (slot)
3312
3312
  slot.textContent = msg;
3313
+ // The message-list pane too — on a phone the folder tree is
3314
+ // off-canvas and the viewer pane is behind the list, so the
3315
+ // tree/viewer slots above are both invisible at boot. This is
3316
+ // the pane the user is actually staring at (Bob 2026-08-01:
3317
+ // "blank screen and 'syncing' at the bottom"). `.ml-empty`
3318
+ // exists only while the list has no rows, so live message
3319
+ // rows are never overwritten.
3320
+ const mlEmpty = document.querySelector("#ml-body .ml-empty");
3321
+ if (mlEmpty)
3322
+ mlEmpty.textContent = msg;
3323
+ // Zero-account welcome pane (the visible one on a phone until
3324
+ // accounts land) — folder-tree.ts renders this slot.
3325
+ const narrationSlot = document.getElementById("bootstrap-narration");
3326
+ if (narrationSlot)
3327
+ narrationSlot.textContent = msg;
3313
3328
  }
3314
3329
  break;
3315
3330
  }