This commit is contained in:
FireMasterK 2021-01-20 21:19:21 +05:30
parent 5861245382
commit 9c68e1bc40
No known key found for this signature in database
GPG Key ID: 8DFF5DD33E93DB58
1 changed files with 3 additions and 7 deletions

View File

@ -33,12 +33,7 @@
>
{{ showDesc ? "+" : "-" }}
</a>
<p
v-show="showDesc"
class="uk-light"
v-if="video.description"
v-html="video.description.replaceAll('\n', '<br>')"
></p>
<p v-show="showDesc" class="uk-light" v-html="video.description"></p>
<a v-if="sponsors && sponsors.segments"
>Sponsors Segments: {{ sponsors.segments.length }}</a
>
@ -153,7 +148,8 @@ export default {
this.video.description = this.video.description
.replaceAll("http://www.youtube.com", "")
.replaceAll("https://www.youtube.com", "");
.replaceAll("https://www.youtube.com", "")
.replaceAll("\n", "<br>");
const options = {
autoplay: false,