diff --git a/src/app/components/floating-column/manage-account/notifications/notifications.component.html b/src/app/components/floating-column/manage-account/notifications/notifications.component.html index 53bf836f..a17921fb 100644 --- a/src/app/components/floating-column/manage-account/notifications/notifications.component.html +++ b/src/app/components/floating-column/manage-account/notifications/notifications.component.html @@ -23,11 +23,17 @@
- followed + followed you!
- + @{{ notification.account.acct }} diff --git a/src/app/components/floating-column/manage-account/notifications/notifications.component.ts b/src/app/components/floating-column/manage-account/notifications/notifications.component.ts index 55212886..270d3601 100644 --- a/src/app/components/floating-column/manage-account/notifications/notifications.component.ts +++ b/src/app/components/floating-column/manage-account/notifications/notifications.component.ts @@ -134,6 +134,11 @@ export class NotificationsComponent implements OnInit, OnDestroy { return false; } + openUrl(url: string): boolean { + window.open(url, '_blank'); + return false; + } + browseAccount(accountName: string): void { this.browseAccountEvent.next(accountName); } diff --git a/src/app/components/stream/status/status.component.html b/src/app/components/stream/status/status.component.html index 0b9f9003..408d8bfb 100644 --- a/src/app/components/stream/status/status.component.html +++ b/src/app/components/stream/status/status.component.html @@ -9,7 +9,9 @@
- favorited your status
@@ -18,7 +20,9 @@
- boosted your status
diff --git a/src/app/components/stream/user-profile/user-profile.component.html b/src/app/components/stream/user-profile/user-profile.component.html index 512a42af..44f80acf 100644 --- a/src/app/components/stream/user-profile/user-profile.component.html +++ b/src/app/components/stream/user-profile/user-profile.component.html @@ -5,7 +5,7 @@
- + header

diff --git a/src/app/components/stream/user-profile/user-profile.component.ts b/src/app/components/stream/user-profile/user-profile.component.ts index b4acede9..d5ce86a7 100644 --- a/src/app/components/stream/user-profile/user-profile.component.ts +++ b/src/app/components/stream/user-profile/user-profile.component.ts @@ -273,4 +273,9 @@ export class UserProfileComponent implements OnInit { this.maxId = this.statuses[this.statuses.length - 1].status.id; } + + openAccount(): boolean { + window.open(this.displayedAccount.url, '_blank'); + return false; + } }