We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71c0cd commit d1e13ceCopy full SHA for d1e13ce
grails-app/assets/javascripts/streama/templates/streama-video-player.tpl.htm
@@ -43,8 +43,8 @@ <h3>{{options.videoMetaSubtitle}}</h3>
43
</div>
44
<div class="col-xs-8">
45
<h4>{{'VIDEO.UPNEXT' | translate}}</h4>
46
- <h3>{{options.nextVideo.fullTitle}}</h3>
47
- <p>{{options.nextVideo.overview}}</p>
+ <h3>{{options.nextVideo.fullTitle || options.nextVideo.title}}</h3>
+ <p>{{options.nextVideo.overview.length > 150 ? options.nextVideo.overview.substring(0, 150) + '...' : options.nextVideo.overview}}</p>
48
49
<button class="play-button with-label" ng-click="next()"> <span class="play-label">play now</span> <i class="ion-ios-play"></i></button>
50
0 commit comments