diff options
author | Chocobozzz <me@florianbigard.com> | 2021-11-02 10:01:28 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-11-02 10:01:28 +0100 |
commit | f1c861727c1d2f9eacf98821c81f0f8cdcb57317 (patch) | |
tree | b256b20ca99abd1fb439a8f9ad918ecc98a44b68 /client/src/app/shared/shared-forms | |
parent | eeae81428e933b923dc9d9b6c9ce5c9fcf0de1a7 (diff) | |
download | PeerTube-f1c861727c1d2f9eacf98821c81f0f8cdcb57317.tar.gz PeerTube-f1c861727c1d2f9eacf98821c81f0f8cdcb57317.tar.zst PeerTube-f1c861727c1d2f9eacf98821c81f0f8cdcb57317.zip |
Add ability to preview embed in share modal
Diffstat (limited to 'client/src/app/shared/shared-forms')
-rw-r--r-- | client/src/app/shared/shared-forms/input-toggle-hidden.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-forms/input-toggle-hidden.component.html b/client/src/app/shared/shared-forms/input-toggle-hidden.component.html index 63e49c778..dfe646d2f 100644 --- a/client/src/app/shared/shared-forms/input-toggle-hidden.component.html +++ b/client/src/app/shared/shared-forms/input-toggle-hidden.component.html | |||
@@ -1,7 +1,7 @@ | |||
1 | <div class="input-group input-group-sm"> | 1 | <div class="input-group input-group-sm"> |
2 | <input | 2 | <input |
3 | [id]="inputId" [autocomplete]="autocomplete" [value]="value" [placeholder]="placeholder" [tabindex]="tabindex" | 3 | [id]="inputId" [autocomplete]="autocomplete" [value]="value" [placeholder]="placeholder" [tabindex]="tabindex" |
4 | [(ngModel)]="value" (ngModelChange)="update()" [ngClass]="{ 'readonly': readonly }" [readonly]="readonly" | 4 | [(ngModel)]="value" (ngModelChange)="update()" [readonly]="readonly" |
5 | #input (click)="input.select()" (input)="update()" (change)="update()" [type]="inputType" class="form-control" | 5 | #input (click)="input.select()" (input)="update()" (change)="update()" [type]="inputType" class="form-control" |
6 | /> | 6 | /> |
7 | 7 | ||