@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.bundle.js +18 -0
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +4 -2
- package/client/app.js.map +1 -1
- package/client/app.ts +4 -2
- package/client/components/message-viewer.js +22 -0
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +18 -0
- package/client/package.json +1 -1
- package/client/styles/layout.css +20 -5
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-57292 → node_modules.npmglobalize-stash-35072}/.package-lock.json +0 -0
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").
|
|
4153
|
-
//
|
|
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();
|