Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit d39a9dc

Browse files
Merge pull request #844 from deckgo/rel-links
chore: add rel to links
2 parents 31963b8 + 48b8c80 commit d39a9dc

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

studio/src/app/components/editor/app-image-columns/app-image-columns.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Component, Event, EventEmitter, Prop, h} from '@stencil/core';
33
@Component({
44
tag: 'app-image-columns',
55
styleUrl: 'app-image-columns.scss',
6-
shadow: true
6+
shadow: true,
77
})
88
export class AppImageColumns {
99
@Prop()
@@ -86,6 +86,7 @@ export class AppImageColumns {
8686
<a
8787
href={photo.user.links.html + '?utm_source=DeckDeckGo&utm_medium=referral'}
8888
target="_blank"
89+
rel="noopener noreferrer"
8990
onClick={($event: UIEvent) => $event.stopPropagation()}>
9091
{photo.user.name}
9192
</a>

studio/src/app/pages/core/about/app-press/app-press.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class AppPress {
1919

2020
<p>
2121
That being said, you can download our logo as a{' '}
22-
<a href="https://deckdeckgo.com/assets/img/deckdeckgo-logo.svg" target="_blank">
22+
<a href="https://deckdeckgo.com/assets/img/deckdeckgo-logo.svg" target="_blank" rel="noopener noreferrer">
2323
svg
2424
</a>{' '}
2525
and could{' '}

studio/src/app/pages/core/about/app-remote/app-remote.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {Component, h} from '@stencil/core';
22

33
@Component({
44
tag: 'app-remote',
5-
styleUrl: 'app-remote.scss'
5+
styleUrl: 'app-remote.scss',
66
})
77
export class AppRemote {
88
render() {
@@ -26,15 +26,15 @@ export class AppRemote {
2626

2727
<p class="ion-padding-bottom">
2828
Start the{' '}
29-
<a href="https://deckdeckgo.app" target="_blank">
29+
<a href="https://deckdeckgo.app" target="_blank" rel="noopener noreferrer">
3030
remote control
3131
</a>{' '}
3232
now 🚀
3333
</p>
3434

3535
<iframe width="260" height="146" src="https://www.youtube.com/embed/PnSNT5WpauE"></iframe>
3636
</main>
37-
</ion-content>
37+
</ion-content>,
3838
];
3939
}
4040
}

studio/src/app/popovers/editor/app-get-help/app-get-help.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export class AppGetHelp {
2020
Reach us on{' '}
2121
<a
2222
href="https://join.slack.com/t/deckdeckgo/shared_invite/enQtNzM0NjMwOTc3NTI0LTBlNmFhODNhYmRkMWUxZmU4ZTQ2MDJiNjlmYWZiODNjMDU5OGRjYThlZmZjMTc5YmQ3MzUzMDlhMzk0ZDgzMDY"
23-
target="_blank">
23+
target="_blank"
24+
rel="noopener noreferrer">
2425
Slack
2526
</a>
2627
, via <a href="mailto:[email protected]">email</a> or on{' '}

studio/src/app/popovers/editor/remote/app-remote-connect/app-remote-connect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class AppRemoteConnect {
9797
<p>Remote control your presentation with your phone or any devices.</p>
9898
<p class="no-padding-bottom">
9999
Scan the QR-Code or get the Progressive Web Apps at{' '}
100-
<a href="https://deckdeckgo.app" target="_blank">
100+
<a href="https://deckdeckgo.app" target="_blank" rel="noopener noreferrer">
101101
https://deckdeckgo.app <ion-icon name="open"></ion-icon>
102102
</a>
103103
</p>

0 commit comments

Comments
 (0)