mirror of
https://github.com/mjl-/mox.git
synced 2025-01-14 01:06:27 +03:00
webmail: new shortcut "T" for showing html version of email, and t for text version
shortcut X used to be "show html version", but with threading support became "toggle collapse", so there was a clash.
This commit is contained in:
parent
3fb41ff073
commit
bff0131164
2 changed files with 10 additions and 10 deletions
|
@ -1868,8 +1868,8 @@ const cmdHelp = async () => {
|
|||
['R', 'reply all'],
|
||||
['f', 'forward message'],
|
||||
['v', 'view attachments'],
|
||||
['T', 'view text version'],
|
||||
['X', 'view HTML version'],
|
||||
['t', 'view text version'],
|
||||
['T', 'view HTML version'],
|
||||
['o', 'open message in new tab'],
|
||||
['O', 'show raw message'],
|
||||
['ctrl p', 'print message'],
|
||||
|
@ -2681,8 +2681,8 @@ const newMsgView = (miv, msglistView, listMailboxes, possibleLabels, messageLoad
|
|||
r: cmdReply,
|
||||
R: cmdReplyAll,
|
||||
v: cmdViewAttachments,
|
||||
T: cmdShowText,
|
||||
X: cmdShowHTMLCycle,
|
||||
t: cmdShowText,
|
||||
T: cmdShowHTMLCycle,
|
||||
'ctrl I': cmdToggleHeaders,
|
||||
'alt j': cmdDown,
|
||||
'alt k': cmdUp,
|
||||
|
@ -2923,7 +2923,7 @@ const newMsgView = (miv, msglistView, listMailboxes, possibleLabels, messageLoad
|
|||
const text = haveText && !settings.showHTML;
|
||||
dom._kids(msgmodeElem, dom.div(dom._class('pad'), style({ borderTop: '1px solid #ccc' }), !haveText ? dom.span('HTML-only message', attr.title(htmlNote), style({ backgroundColor: '#ffca91', padding: '0 .15em', marginRight: '.25em' })) : [], dom.span(dom._class('btngroup'), haveText ? textbtn = dom.clickbutton(text ? dom._class('active') : [], 'Text', clickCmd(cmdShowText, shortcuts)) : [], htmlbtn = dom.clickbutton(text ? [] : dom._class('active'), 'HTML', attr.title(htmlNote), async function click() {
|
||||
// Shortcuts has a function that cycles through html and htmlexternal.
|
||||
showShortcut('X');
|
||||
showShortcut('T');
|
||||
await cmdShowHTML();
|
||||
}), htmlextbtn = dom.clickbutton('HTML with external resources', attr.title(htmlNote), clickCmd(cmdShowHTMLExternal, shortcuts)))));
|
||||
if (text) {
|
||||
|
|
|
@ -1014,8 +1014,8 @@ const cmdHelp = async () => {
|
|||
['R', 'reply all'],
|
||||
['f', 'forward message'],
|
||||
['v', 'view attachments'],
|
||||
['T', 'view text version'],
|
||||
['X', 'view HTML version'],
|
||||
['t', 'view text version'],
|
||||
['T', 'view HTML version'],
|
||||
['o', 'open message in new tab'],
|
||||
['O', 'show raw message'],
|
||||
['ctrl p', 'print message'],
|
||||
|
@ -2168,8 +2168,8 @@ const newMsgView = (miv: MsgitemView, msglistView: MsglistView, listMailboxes: l
|
|||
r: cmdReply,
|
||||
R: cmdReplyAll,
|
||||
v: cmdViewAttachments,
|
||||
T: cmdShowText,
|
||||
X: cmdShowHTMLCycle,
|
||||
t: cmdShowText,
|
||||
T: cmdShowHTMLCycle,
|
||||
'ctrl I': cmdToggleHeaders,
|
||||
|
||||
'alt j': cmdDown,
|
||||
|
@ -2573,7 +2573,7 @@ const newMsgView = (miv: MsgitemView, msglistView: MsglistView, listMailboxes: l
|
|||
haveText ? textbtn=dom.clickbutton(text ? dom._class('active') : [], 'Text', clickCmd(cmdShowText, shortcuts)) : [],
|
||||
htmlbtn=dom.clickbutton(text ? [] : dom._class('active'), 'HTML', attr.title(htmlNote), async function click() {
|
||||
// Shortcuts has a function that cycles through html and htmlexternal.
|
||||
showShortcut('X')
|
||||
showShortcut('T')
|
||||
await cmdShowHTML()
|
||||
}),
|
||||
htmlextbtn=dom.clickbutton('HTML with external resources', attr.title(htmlNote), clickCmd(cmdShowHTMLExternal, shortcuts)),
|
||||
|
|
Loading…
Reference in a new issue