mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-25 15:07:21 +00:00
parent
25592c3f2c
commit
4a8927c794
@ -85,11 +85,27 @@
|
|||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<label for="chkAutoLoop"><b>{{ $t("actions.loop_this_video") }}:</b></label>
|
<label for="chkAutoLoop"
|
||||||
<input id="chkAutoLoop" class="uk-checkbox" v-model="selectedAutoLoop" @change="onChange($event)" type="checkbox" />
|
><b>{{ $t("actions.loop_this_video") }}:</b></label
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
id="chkAutoLoop"
|
||||||
|
class="uk-checkbox"
|
||||||
|
v-model="selectedAutoLoop"
|
||||||
|
@change="onChange($event)"
|
||||||
|
type="checkbox"
|
||||||
|
/>
|
||||||
<br />
|
<br />
|
||||||
<label for="chkAutoPlay"><b>{{ $t("actions.auto_play_next_video") }}:</b></label>
|
<label for="chkAutoPlay"
|
||||||
<input id="chkAutoPlay" class="uk-checkbox" v-model="selectedAutoPlay" @change="onChange($event)" type="checkbox" />
|
><b>{{ $t("actions.auto_play_next_video") }}:</b></label
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
id="chkAutoPlay"
|
||||||
|
class="uk-checkbox"
|
||||||
|
v-model="selectedAutoPlay"
|
||||||
|
@change="onChange($event)"
|
||||||
|
type="checkbox"
|
||||||
|
/>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
@ -167,7 +183,7 @@ export default {
|
|||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
this.active = true;
|
this.active = true;
|
||||||
this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", true);
|
this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", false);
|
||||||
this.showDesc = !this.getPreferenceBoolean("minimizeDescription", false);
|
this.showDesc = !this.getPreferenceBoolean("minimizeDescription", false);
|
||||||
if (this.video.duration) {
|
if (this.video.duration) {
|
||||||
document.title = this.video.title + " - Piped";
|
document.title = this.video.title + " - Piped";
|
||||||
|
Loading…
Reference in New Issue
Block a user