@bobfrankston/rmfmail 1.1.42 → 1.1.43
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 +5 -1
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +8 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +8 -1
- package/client/components/tabs.js +4 -4
- package/client/components/tabs.js.map +1 -1
- package/client/components/tabs.ts +4 -4
- package/client/styles/components.css +4 -0
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-93832 → node_modules.npmglobalize-stash-58712}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -6149,7 +6149,7 @@ function render() {
|
|
|
6149
6149
|
plus.title = "New tab (All Inboxes)";
|
|
6150
6150
|
plus.addEventListener("click", () => openTab({ kind: "unified" }, "All Inboxes", true));
|
|
6151
6151
|
stripEl.appendChild(plus);
|
|
6152
|
-
stripEl.hidden = tabs.length <
|
|
6152
|
+
stripEl.hidden = tabs.length < 2;
|
|
6153
6153
|
}
|
|
6154
6154
|
function initTabs(strip, apply) {
|
|
6155
6155
|
stripEl = strip;
|
|
@@ -8257,6 +8257,10 @@ document.addEventListener("keydown", (e) => {
|
|
|
8257
8257
|
e.preventDefault();
|
|
8258
8258
|
openCompose("new");
|
|
8259
8259
|
}
|
|
8260
|
+
if (e.ctrlKey && (e.key === "t" || e.key === "T") && !e.shiftKey && !e.altKey) {
|
|
8261
|
+
e.preventDefault();
|
|
8262
|
+
openTab({ kind: "unified" }, "All Inboxes", true);
|
|
8263
|
+
}
|
|
8260
8264
|
if (e.ctrlKey && e.key === "r" && !e.shiftKey && !e.altKey && !e.metaKey) {
|
|
8261
8265
|
e.preventDefault();
|
|
8262
8266
|
openCompose("reply");
|