Hashtag opens in same tab
This commit is contained in:
parent
3d337a239e
commit
a12397cf38
1 changed files with 8 additions and 1 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Reference in a new issue