Added return to twitter function

This commit is contained in:
Nicholas Jitkoff 2018-07-08 09:11:17 -07:00
parent 7af47b5101
commit b9f565ce08

View file

@ -255,4 +255,5 @@ function saveLink() {
function tweetLink() {
var url = "https://twitter.com/intent/tweet?url=" + encodeURIComponent(location.href);
window.open(url, '_blank');
return false;
}