Skip to content

Commit 055d884

Browse files
authored
Merge pull request #22 from bezko/master
Allow Facebook custom text
2 parents f1038d9 + bcac0c0 commit 055d884

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/share-buttons.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
function ShareButtons() {
1818

19-
var FB_LINK_FORMAT = 'https://www.facebook.com/sharer/sharer.php?u={0}',
19+
var FB_LINK_FORMAT = 'https://www.facebook.com/sharer/sharer.php?u={0}&quote={1}',
2020
VK_LINK_FORMAT = 'https://vk.com/share.php?url={0}&title={1}',
2121
TW_LINK_FORMAT = 'https://twitter.com/intent/tweet?url={0}&text={1}',
2222
TG_LINK_FORMAT = 'https://t.me/share/url?url={0}&text={1}',
@@ -188,7 +188,7 @@
188188
switch (id) {
189189
case FB_CLASS_NAME:
190190
popupCenter(
191-
stringFormat(FB_LINK_FORMAT, [url]),
191+
stringFormat(FB_LINK_FORMAT, [url,title]),
192192
titleDef);
193193
break;
194194

0 commit comments

Comments
 (0)