forked from mirror/pixelfed
Update Remote Post + Profile hashtag to redirect to local urls
This commit is contained in:
parent
27fbe88438
commit
1fa08644b4
2 changed files with 1388 additions and 1379 deletions
|
@ -591,6 +591,9 @@ export default {
|
||||||
if(this.showReadMore == true) {
|
if(this.showReadMore == true) {
|
||||||
window.pixelfed.readmore();
|
window.pixelfed.readmore();
|
||||||
}
|
}
|
||||||
|
document.querySelectorAll('.hashtag').forEach(function(i, e) {
|
||||||
|
i.href = App.util.format.rewriteLinks(i);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -227,6 +227,12 @@
|
||||||
this.fetchProfile();
|
this.fetchProfile();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
updated() {
|
||||||
|
document.querySelectorAll('.hashtag').forEach(function(i, e) {
|
||||||
|
i.href = App.util.format.rewriteLinks(i);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
fetchProfile() {
|
fetchProfile() {
|
||||||
|
|
Loading…
Reference in a new issue