From 4e3ad27485f30bce67bea68360cd78d138e8a866 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Mon, 13 May 2019 00:01:37 -0500 Subject: [PATCH] newline in quoted mail --- README.md | 6 ++++-- onionr/static-data/www/mail/mail.js | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cc666543..f3be8f12 100755 --- a/README.md +++ b/README.md @@ -103,7 +103,9 @@ Note: probably not tax deductible beardog [ at ] mailbox.org -## Disclaimer +## Disclaimers and legal + +Onionr is published under the GNU GPL v3 license. The Tor Project and I2P developers do not own, create, or endorse this project, and are not otherwise involved. @@ -115,6 +117,6 @@ The 'open source badge' is by Maik Ellerbrock and is licensed under a Creative C The Onionr logo was created by [Anhar Ismail](https://github.com/anharismail) under the [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). -If you modify and redistribute our code ("forking"), please use a different logo and project name to avoid confusion. Please do not use our logo in a way that makes it seem like we endorse you without permission. +If you modify and redistribute our code ("forking"), please use a different logo and project name to avoid confusion. Please do not use our logo in a way that makes it seem like we endorse you without our permission. ![Tor stinks slide image](docs/tor-stinks-02.png) diff --git a/onionr/static-data/www/mail/mail.js b/onionr/static-data/www/mail/mail.js index 8c9b13d1..f02a3110 100644 --- a/onionr/static-data/www/mail/mail.js +++ b/onionr/static-data/www/mail/mail.js @@ -47,7 +47,7 @@ function openReply(bHash, quote, subject){ for (var x = 0; x < splitQuotes.length; x++){ splitQuotes[x] = '>' + splitQuotes[x] } - quote = splitQuotes.join('\n') + quote = '\n' + splitQuotes.join('\n') document.getElementById('draftText').value = quote setActiveTab('send message') }