Change target for opening links
This commit is contained in:
parent
1da3eb3b98
commit
d80cdf1690
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ export class PostMenu {
|
|||
}
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
|
|
|
@ -308,7 +308,7 @@ export class StreamPage {
|
|||
}
|
||||
|
||||
showImage(url) {
|
||||
window.open(url, '_system');
|
||||
window.open(url, '_blank');
|
||||
}
|
||||
|
||||
presentToast(text) {
|
||||
|
|
Reference in a new issue