Hashtag opens in same tab

This commit is contained in:
Edijs 2019-02-06 11:34:21 -07:00
parent 3d337a239e
commit a12397cf38

View file

@ -282,8 +282,15 @@ const Status = {
this.$router.push(link)
return
}
} else {
if (target.hostname === window.location.hostname) {
// if the hashtag's target is current instance, open in same tab
this.$router.push(target.pathname)
} else {
// if it is different instance, open in a new tab
window.open(target.href, '_blank')
}
}
window.open(target.href, '_blank')
}
},
toggleReplying () {