mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 22:39:46 +00:00
noreferrer everywhere
This commit is contained in:
@@ -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> {
|
||||
|
||||
@@ -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 () {
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user