added external link into profile images, fix #254
This commit is contained in:
parent
b65737e237
commit
8b397a3f7c
|
@ -215,9 +215,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="statusSection === 'media'" class="status-media">
|
<div *ngIf="statusSection === 'media'" class="status-media">
|
||||||
<div *ngFor="let media of statusWrapper.status.media_attachments">
|
<div *ngFor="let media of statusWrapper.status.media_attachments">
|
||||||
<a *ngIf="media.type === 'image' || media.type === 'gifv'" href title="open" (click)="openAttachment(media)">
|
<app-attachement-image *ngIf="media.type === 'image' || media.type === 'gifv'" class="status-media__image" [attachment]="media" (openEvent)="openAttachment(media)"></app-attachement-image>
|
||||||
<img class="status-media__image" src="{{media.preview_url}}" />
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { Component, OnInit, Input, Output, EventEmitter, ViewChild, ElementRef } from '@angular/core';
|
import { Component, OnInit, Input, Output, EventEmitter, ViewChild, ElementRef } from '@angular/core';
|
||||||
import { HttpErrorResponse } from '@angular/common/http';
|
import { HttpErrorResponse } from '@angular/common/http';
|
||||||
import { faUser, faHourglassHalf, faUserCheck, faExclamationTriangle } from "@fortawesome/free-solid-svg-icons";
|
import { faUser, faHourglassHalf, faUserCheck, faExclamationTriangle, faLink } from "@fortawesome/free-solid-svg-icons";
|
||||||
import { faUser as faUserRegular } from "@fortawesome/free-regular-svg-icons";
|
import { faUser as faUserRegular } from "@fortawesome/free-regular-svg-icons";
|
||||||
import { Observable, Subscription } from 'rxjs';
|
import { Observable, Subscription } from 'rxjs';
|
||||||
import { Store } from '@ngxs/store';
|
import { Store } from '@ngxs/store';
|
||||||
|
@ -27,6 +27,7 @@ export class UserProfileComponent implements OnInit {
|
||||||
faHourglassHalf = faHourglassHalf;
|
faHourglassHalf = faHourglassHalf;
|
||||||
faUserCheck = faUserCheck;
|
faUserCheck = faUserCheck;
|
||||||
faExclamationTriangle = faExclamationTriangle;
|
faExclamationTriangle = faExclamationTriangle;
|
||||||
|
faLink = faLink;
|
||||||
|
|
||||||
displayedAccount: Account;
|
displayedAccount: Account;
|
||||||
hasNote: boolean;
|
hasNote: boolean;
|
||||||
|
|
Loading…
Reference in New Issue