newline in quoted mail

This commit is contained in:
Kevin Froman 2019-05-13 00:01:37 -05:00
parent e8baafa3b8
commit 4e3ad27485
2 changed files with 5 additions and 3 deletions

View File

@ -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)

View File

@ -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')
}