Skip to content

Commit f1038d9

Browse files
authored
Merge pull request #20 from wcoder/bugfix/email-format
Bugfix/email format
2 parents 9dcb55b + d91d0c6 commit f1038d9

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ include `share-buttons.js` in the end of page:
2828
<script src="<path>/dist/share-buttons.js"></script>
2929
```
3030

31-
Paste this html on the page:
31+
Paste this HTML on the page:
3232

3333
``` html
3434
<div class="share-btn">
@@ -110,4 +110,4 @@ If your using [Font-Awesome](https://github.com/FortAwesome/Font-Awesome):
110110

111111
----
112112

113-
&copy; 2015 - 2019 Yauheni Pakala
113+
&copy; 2015 - 2020 Yauheni Pakala

dist/share-buttons.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "share-buttons",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"description": "Simple social buttons for your site.",
55
"directories": {
66
"example": "example"

src/share-buttons.js

+5-8
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Class to display the buttons of social networks.
1212
*
1313
* @author Yauheni Pakala <https://wcoder.github.io>
14-
* @version 1.2
14+
* @version 1.5
1515
* @license MIT
1616
*/
1717
function ShareButtons() {
@@ -31,7 +31,7 @@
3131
TU_LINK_FORMAT = 'https://www.tumblr.com/widgets/share/tool?posttype=link&title={0}&caption={0}&content={1}&canonicalUrl={1}&shareSource=tumblr_share_button',
3232
HN_LINK_FORMAT = 'https://news.ycombinator.com/submitlink?t={0}&u={1}',
3333
XI_LINK_FORMAT = 'https://www.xing.com/app/user?op=share;url={0};title={1}',
34-
MAIL_LINK_FORMAT = 'mailto:?Subject={0}{1}&body={2}{3}',
34+
MAIL_LINK_FORMAT = 'mailto:?subject={0}&body={1}',
3535
FB_CLASS_NAME = 'fb',
3636
VK_CLASS_NAME = 'vk',
3737
TW_CLASS_NAME = 'tw',
@@ -314,14 +314,11 @@
314314
if (title.length > 0 && desc.length > 0) {
315315
text = mergeForTitle([title, desc]);
316316
}
317-
if (text.length > 0) {
318-
text = text + ' / ';
319-
}
320-
if (title.length > 0) {
321-
title += ' / ';
317+
if (url.length > 0) {
318+
text = text + ' / ' + url;
322319
}
323320

324-
location.href = stringFormat(MAIL_LINK_FORMAT, [title, titleDef, text, url]);
321+
location.href = stringFormat(MAIL_LINK_FORMAT, [title, text]);
325322
break;
326323

327324
case PRINT_CLASS_NAME:

0 commit comments

Comments
 (0)