From 62955fd47219825289a8282ab7f9aa0601817ef4 Mon Sep 17 00:00:00 2001 From: Mike Fix Date: Wed, 20 Jan 2021 18:56:57 -0800 Subject: [PATCH] window.open _blank for twitter closes #1163 --- lib/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api.js b/lib/api.js index 2072971..75878de 100644 --- a/lib/api.js +++ b/lib/api.js @@ -52,7 +52,7 @@ function openTwitterUrl(twitterUrl) { const top = (window.outerHeight - height) / 2 const opts = `status=1,width=${width},height=${height},top=${top},left=${left}` - window.open(twitterUrl, 'twitter', opts) + window.open(twitterUrl, '_blank', opts) } const downloadThumbnailImage = img => {