mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
minimize the video description by default
This commit is contained in:
parent
41a597085c
commit
667641c100
1 changed files with 11 additions and 21 deletions
|
@ -155,26 +155,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
|
||||||
<label for="chkAutoLoop"><strong v-text="`${$t('actions.loop_this_video')}:`" /></label>
|
|
||||||
<input
|
|
||||||
id="chkAutoLoop"
|
|
||||||
v-model="selectedAutoLoop"
|
|
||||||
class="ml-1.5"
|
|
||||||
type="checkbox"
|
|
||||||
@change="onChange($event)"
|
|
||||||
/>
|
|
||||||
<br />
|
|
||||||
<label for="chkAutoPlay"><strong v-text="`${$t('actions.auto_play_next_video')}:`" /></label>
|
|
||||||
<input
|
|
||||||
id="chkAutoPlay"
|
|
||||||
v-model="selectedAutoPlay"
|
|
||||||
class="ml-1.5"
|
|
||||||
type="checkbox"
|
|
||||||
@change="onChange($event)"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr class="mb-2" />
|
<hr class="mb-2" />
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
@ -225,6 +205,16 @@
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
|
<label for="chkAutoLoop"><strong v-text="`${$t('actions.loop_this_video')}:`" /></label>
|
||||||
|
<input id="chkAutoLoop" v-model="selectedAutoLoop" class="ml-1.5" type="checkbox" @change="onChange($event)" />
|
||||||
|
<br />
|
||||||
|
<label for="chkAutoPlay"><strong v-text="`${$t('actions.auto_play_next_video')}:`" /></label>
|
||||||
|
<input id="chkAutoPlay" v-model="selectedAutoPlay" class="ml-1.5" type="checkbox" @change="onChange($event)" />
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
<div class="grid grid-cols-1 sm:grid-cols-4 xl:grid-cols-5">
|
<div class="grid grid-cols-1 sm:grid-cols-4 xl:grid-cols-5">
|
||||||
<div class="sm:col-span-3 xl:col-span-4">
|
<div class="sm:col-span-3 xl:col-span-4">
|
||||||
<button
|
<button
|
||||||
|
@ -325,7 +315,7 @@ export default {
|
||||||
selectedAutoLoop: false,
|
selectedAutoLoop: false,
|
||||||
selectedAutoPlay: null,
|
selectedAutoPlay: null,
|
||||||
showComments: true,
|
showComments: true,
|
||||||
showDesc: true,
|
showDesc: false,
|
||||||
showRecs: true,
|
showRecs: true,
|
||||||
showChapters: true,
|
showChapters: true,
|
||||||
comments: null,
|
comments: null,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue