Change target for opening links

This commit is contained in:
Morgan McMillian 2018-11-12 13:27:17 -08:00
parent 1da3eb3b98
commit d80cdf1690
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ export class PostMenu {
} }
browse() { browse() {
window.open('https://posts.pnut.io/' + this.navParams.data.post.id, '_system'); window.open('https://posts.pnut.io/' + this.navParams.data.post.id, '_blank');
this.close(); this.close();
} }

View file

@ -308,7 +308,7 @@ export class StreamPage {
} }
showImage(url) { showImage(url) {
window.open(url, '_system'); window.open(url, '_blank');
} }
presentToast(text) { presentToast(text) {