diff options
| author | Edijs <iamedijs@hotmail.com> | 2019-02-11 07:38:12 -0700 |
|---|---|---|
| committer | Edijs <iamedijs@hotmail.com> | 2019-02-11 07:38:12 -0700 |
| commit | 9959c311a9d0f4aa6c71309564979caf38a037a8 (patch) | |
| tree | d0fe645830d0819df9e028fe67fa898b735c2af3 | |
| parent | b6bac4d06d815e2ccdcfc86ba14cae75908570ca (diff) | |
Fix clicking link - open new tab unless tag or mention
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 06e4fe93..50198928 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -299,7 +299,9 @@ const Status = { const link = this.generateTagLink(tag) this.$router.push(link) } + return } + window.open(target.href, '_blank') } }, toggleReplying () { |
