aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-watch/video-watch.component.html
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-04-12 22:00:17 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-04-12 22:00:17 +0200
commitad42bea3a55ca7937f082cc641764de70ce34bd1 (patch)
tree621302fd9fa39ad5e76c5c0a5e7197464a0ea125 /client/src/app/videos/video-watch/video-watch.component.html
parentd8e689b864749648d03cf4391fd4a475126f01cd (diff)
downloadPeerTube-ad42bea3a55ca7937f082cc641764de70ce34bd1.tar.gz
PeerTube-ad42bea3a55ca7937f082cc641764de70ce34bd1.tar.zst
PeerTube-ad42bea3a55ca7937f082cc641764de70ce34bd1.zip
Client: update to angular 4
Diffstat (limited to 'client/src/app/videos/video-watch/video-watch.component.html')
-rw-r--r--client/src/app/videos/video-watch/video-watch.component.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/videos/video-watch/video-watch.component.html b/client/src/app/videos/video-watch/video-watch.component.html
index 2a6b15dc9..19e9bd9ed 100644
--- a/client/src/app/videos/video-watch/video-watch.component.html
+++ b/client/src/app/videos/video-watch/video-watch.component.html
@@ -78,7 +78,7 @@
78 <span class="glyphicon glyphicon-option-horizontal"></span> More 78 <span class="glyphicon glyphicon-option-horizontal"></span> More
79 </button> 79 </button>
80 80
81 <ul dropdownMenu id="more-menu" role="menu" aria-labelledby="single-button"> 81 <ul *dropdownMenu class="dropdown-menu" id="more-menu" role="menu" aria-labelledby="single-button">
82 <li *ngIf="canUserUpdateVideo()" role="menuitem"> 82 <li *ngIf="canUserUpdateVideo()" role="menuitem">
83 <a class="dropdown-item" title="Update this video" href="#" [routerLink]="[ '/videos/edit', video.id ]"> 83 <a class="dropdown-item" title="Update this video" href="#" [routerLink]="[ '/videos/edit', video.id ]">
84 <span class="glyphicon glyphicon-pencil"></span> Update 84 <span class="glyphicon glyphicon-pencil"></span> Update
@@ -142,8 +142,8 @@
142 </div> 142 </div>
143</div> 143</div>
144 144
145<template [ngIf]="video !== null"> 145<ng-template [ngIf]="video !== null">
146 <my-video-share #videoShareModal [video]="video"></my-video-share> 146 <my-video-share #videoShareModal [video]="video"></my-video-share>
147 <my-video-magnet #videoMagnetModal [video]="video"></my-video-magnet> 147 <my-video-magnet #videoMagnetModal [video]="video"></my-video-magnet>
148 <my-video-report #videoReportModal [video]="video"></my-video-report> 148 <my-video-report #videoReportModal [video]="video"></my-video-report>
149</template> 149</ng-template>