noreferrer everywhere

This commit is contained in:
Matt Hill
2021-09-03 14:24:27 -06:00
parent 967664561a
commit f2c91bd4d1
12 changed files with 23 additions and 15 deletions

View File

@@ -79,7 +79,7 @@ export class AppInterfacesItemComponent {
) { }
launch (url: string): void {
window.open(url, '_blank')
window.open(url, '_blank', 'noreferrer')
}
async copy (address: string): Promise<void> {

View File

@@ -115,7 +115,7 @@ export class AppListPage {
launchUi (pkg: PackageDataEntry, event: Event): void {
event.preventDefault()
event.stopPropagation()
window.open(this.config.launchableURL(pkg), '_blank')
window.open(this.config.launchableURL(pkg), '_blank', 'noreferrer')
}
asIsOrder () {

View File

@@ -79,7 +79,7 @@ export class AppShowPage {
}
launchUi (): void {
window.open(this.config.launchableURL(this.pkg), '_blank')
window.open(this.config.launchableURL(this.pkg), '_blank', 'noreferrer')
}
async stop (): Promise<void> {
@@ -124,7 +124,7 @@ export class AppShowPage {
async donate (): Promise<void> {
const url = this.pkg.manifest['donation-url']
if (url) {
window.open(url, '_blank')
window.open(url, '_blank', 'noreferrer')
} else {
const alert = await this.alertCtrl.create({
header: 'Not Accepting Donations',