aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account-videos/account-videos.component.html
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-20 15:25:44 +0100
committerChocobozzz <me@florianbigard.com>2017-12-20 15:25:44 +0100
commita0d69908239718ca3bd03097fbd9eb7e2a13ff75 (patch)
tree2a9c8f8abab25967277363f611ff3a7d45105ffe /client/src/app/account/account-videos/account-videos.component.html
parent15a7387da888492068e2ce3d1e39639d142f6c6e (diff)
downloadPeerTube-a0d69908239718ca3bd03097fbd9eb7e2a13ff75.tar.gz
PeerTube-a0d69908239718ca3bd03097fbd9eb7e2a13ff75.tar.zst
PeerTube-a0d69908239718ca3bd03097fbd9eb7e2a13ff75.zip
Customize checkboxs
Diffstat (limited to 'client/src/app/account/account-videos/account-videos.component.html')
-rw-r--r--client/src/app/account/account-videos/account-videos.component.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/account/account-videos/account-videos.component.html b/client/src/app/account/account-videos/account-videos.component.html
index 4f3a774bd..f73483039 100644
--- a/client/src/app/account/account-videos/account-videos.component.html
+++ b/client/src/app/account/account-videos/account-videos.component.html
@@ -7,7 +7,10 @@
7 (scrolledUp)="onNearOfTop()" 7 (scrolledUp)="onNearOfTop()"
8> 8>
9 <div class="video" *ngFor="let video of videos; let i = index"> 9 <div class="video" *ngFor="let video of videos; let i = index">
10 <input type="checkbox" [(ngModel)]="checkedVideos[video.id]" /> 10 <div class="checkbox-container">
11 <input [id]="'video-check-' + i" type="checkbox" [(ngModel)]="checkedVideos[video.id]" />
12 <label [for]="'video-check-' + i"></label>
13 </div>
11 14
12 <my-video-thumbnail [video]="video"></my-video-thumbnail> 15 <my-video-thumbnail [video]="video"></my-video-thumbnail>
13 16