From 81f1ca5e5de5718125d602e36f159a205cd7d0ea Mon Sep 17 00:00:00 2001 From: Will Shanks Date: Wed, 23 Aug 2023 17:36:13 -0400 Subject: [PATCH] Fix README formatting to satisfy prettier --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 12cd5d4..6490b49 100644 --- a/README.md +++ b/README.md @@ -76,11 +76,11 @@ Here are some examples of eval commands for commonly desired key bindings: - **Scroll message list down**: `window.document.getElementById('threadTree').scrollByLines(1)` - **Scroll message list up**: `window.document.getElementById('threadTree').scrollByLines(-1)` - **Scroll message body down**: - - v115+: `window.gTabmail.currentAboutMessage.getMessagePaneBrowser().contentWindow.scrollBy(0, 100)` - - v102: `window.document.getElementById('messagepane').contentDocument.documentElement.getElementsByTagName('body')[0].scrollBy(0, 100)` + - v115+: `window.gTabmail.currentAboutMessage.getMessagePaneBrowser().contentWindow.scrollBy(0, 100)` + - v102: `window.document.getElementById('messagepane').contentDocument.documentElement.getElementsByTagName('body')[0].scrollBy(0, 100)` - **Scroll message body up**: - - v115+: `window.gTabmail.currentAboutMessage.getMessagePaneBrowser().contentWindow.scrollBy(0, -100)` - - v102: `window.document.getElementById('messagepane').contentDocument.documentElement.getElementsByTagName('body')[0].scrollBy(0, -100)` + - v115+: `window.gTabmail.currentAboutMessage.getMessagePaneBrowser().contentWindow.scrollBy(0, -100)` + - v102: `window.document.getElementById('messagepane').contentDocument.documentElement.getElementsByTagName('body')[0].scrollBy(0, -100)` - **Create new folder**: `window.goDoCommand('cmd_newFolder')` - **Subscribe to feed**: `window.openSubscriptionsDialog(window.GetSelectedMsgFolders()[0])`