Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Component, Event, EventEmitter, Prop, h} from '@stencil/core';
@Component({
tag: 'app-image-columns',
styleUrl: 'app-image-columns.scss',
shadow: true
shadow: true,
})
export class AppImageColumns {
@Prop()
Expand Down Expand Up @@ -86,6 +86,7 @@ export class AppImageColumns {
<a
href={photo.user.links.html + '?utm_source=DeckDeckGo&utm_medium=referral'}
target="_blank"
rel="noopener noreferrer"
onClick={($event: UIEvent) => $event.stopPropagation()}>
{photo.user.name}
</a>
Expand Down
2 changes: 1 addition & 1 deletion studio/src/app/pages/core/about/app-press/app-press.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class AppPress {

<p>
That being said, you can download our logo as a{' '}
<a href="https://deckdeckgo.com/assets/img/deckdeckgo-logo.svg" target="_blank">
<a href="https://deckdeckgo.com/assets/img/deckdeckgo-logo.svg" target="_blank" rel="noopener noreferrer">
svg
</a>{' '}
and could{' '}
Expand Down
6 changes: 3 additions & 3 deletions studio/src/app/pages/core/about/app-remote/app-remote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Component, h} from '@stencil/core';

@Component({
tag: 'app-remote',
styleUrl: 'app-remote.scss'
styleUrl: 'app-remote.scss',
})
export class AppRemote {
render() {
Expand All @@ -26,15 +26,15 @@ export class AppRemote {

<p class="ion-padding-bottom">
Start the{' '}
<a href="https://deckdeckgo.app" target="_blank">
<a href="https://deckdeckgo.app" target="_blank" rel="noopener noreferrer">
remote control
</a>{' '}
now 🚀
</p>

<iframe width="260" height="146" src="https://www.youtube.com/embed/PnSNT5WpauE"></iframe>
</main>
</ion-content>
</ion-content>,
];
}
}
3 changes: 2 additions & 1 deletion studio/src/app/popovers/editor/app-get-help/app-get-help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export class AppGetHelp {
Reach us on{' '}
<a
href="https://join.slack.com/t/deckdeckgo/shared_invite/enQtNzM0NjMwOTc3NTI0LTBlNmFhODNhYmRkMWUxZmU4ZTQ2MDJiNjlmYWZiODNjMDU5OGRjYThlZmZjMTc5YmQ3MzUzMDlhMzk0ZDgzMDY"
target="_blank">
target="_blank"
rel="noopener noreferrer">
Slack
</a>
, via <a href="mailto:hello@deckdeckgo.com">email</a> or on{' '}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class AppRemoteConnect {
<p>Remote control your presentation with your phone or any devices.</p>
<p class="no-padding-bottom">
Scan the QR-Code or get the Progressive Web Apps at{' '}
<a href="https://deckdeckgo.app" target="_blank">
<a href="https://deckdeckgo.app" target="_blank" rel="noopener noreferrer">
https://deckdeckgo.app <ion-icon name="open"></ion-icon>
</a>
</p>
Expand Down