aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-watch.component.ts
diff options
context:
space:
mode:
authorTanguy BERNARD <bernardtanguy1pro@gmail.com>2020-11-27 14:27:14 +0100
committerGitHub <noreply@github.com>2020-11-27 14:27:14 +0100
commit992f498e312efcde46f818ba719b50f1f958272f (patch)
treeab7f2e4e4be96097ea450e06243ccebe8acde8fa /client/src/app/+videos/+video-watch/video-watch.component.ts
parente6ad43168587eaa4a6ae1f239df233bc88b723d4 (diff)
downloadPeerTube-992f498e312efcde46f818ba719b50f1f958272f.tar.gz
PeerTube-992f498e312efcde46f818ba719b50f1f958272f.tar.zst
PeerTube-992f498e312efcde46f818ba719b50f1f958272f.zip
add title attribute for exact view counters (#3365)
Diffstat (limited to 'client/src/app/+videos/+video-watch/video-watch.component.ts')
-rw-r--r--client/src/app/+videos/+video-watch/video-watch.component.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/app/+videos/+video-watch/video-watch.component.ts b/client/src/app/+videos/+video-watch/video-watch.component.ts
index 66af9709d..bc047489e 100644
--- a/client/src/app/+videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/+videos/+video-watch/video-watch.component.ts
@@ -219,6 +219,12 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
219 return $localize`You need to be <a href="/login">logged in</a> to rate this video.` 219 return $localize`You need to be <a href="/login">logged in</a> to rate this video.`
220 } 220 }
221 221
222 getExactNumberOfViews () {
223 return (this.video.views >= 1000)
224 ? `${this.video.views} ${this.video.isLive ? $localize`viewers` : $localize`views`}`
225 : ''
226 }
227
222 showMoreDescription () { 228 showMoreDescription () {
223 if (this.completeVideoDescription === undefined) { 229 if (this.completeVideoDescription === undefined) {
224 return this.loadCompleteDescription() 230 return this.loadCompleteDescription()