@bobfrankston/rmfmail 1.2.186 → 1.2.187

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
@@ -4149,8 +4149,10 @@ document.getElementById("message-viewer")?.addEventListener("dblclick", (e) => {
4149
4149
  // address or subject is a universal text-select gesture; hijacking it for
4150
4150
  // fullscreen collapsed the whole UI to a near-empty viewer and looked
4151
4151
  // broken (Bob 2026-06-05: "double-clicked a from address by mistake and
4152
- // got this screen"). Fullscreen is still reachable by double-clicking the
4153
- // message BODY the iframe posts `previewToggleFullscreen` (app.ts:2411).
4152
+ // got this screen"). The iframe-level dblclick toggle was ALSO removed
4153
+ // (it hijacked word-selection), so this chrome handler is now the only
4154
+ // entry into fullscreen-preview. toggleFullscreenPreview() itself guards
4155
+ // against entering with no message loaded.
4154
4156
  if (target?.closest(".mv-header"))
4155
4157
  return;
4156
4158
  toggleFullscreenPreview();