diff --git a/js/stores/AppStore.js b/js/stores/AppStore.js index 5e6d95e..72f3c36 100644 --- a/js/stores/AppStore.js +++ b/js/stores/AppStore.js @@ -241,7 +241,7 @@ var AppStore = assign({}, EventEmitter.prototype, { var links = { 'facebook': 'https://facebook.com/sharer/sharer.php?u=' + url, - 'twitter': 'https://twitter.com/intent/tweet/?text=' + text + '&url=' + url, + 'twitter': 'https://twitter.com/intent/tweet?text=' + text + '&url=' + url, 'tumblr': "https://www.tumblr.com/widgets/share/tool?posttype=link&title=" + text + "&caption=" + text + "&content=" + url + "&canonicalUrl=" + url + "&shareSource=tumblr_share_button", 'pinterest': 'https://pinterest.com/pin/create/button/?url=' + url + '&media=' + url + '&description=' + text, 'linkedin': 'https://www.linkedin.com/shareArticle?mini=true&url=' + url + '&title=' + text + '&summary=' + text + '&source=' + url, @@ -251,7 +251,7 @@ var AppStore = assign({}, EventEmitter.prototype, { 'whatsapp': 'whatsapp://send?text=' + text + '%20' + url, 'hackernews':'https://news.ycombinator.com/submitlink?u=' + url + '&t=' + text, 'vk': 'http://vk.com/share.php?title=' + text + '&url=' + url, - 'telegram': 'https://telegram.me/share/url?text=' + text + '&url=' + url, + 'telegram': 'https://telegram.me/share/url?text=' + text + '&url=' + url, } for (var network in _data.networks) {