Default to autoplay being disabled by default.

Closes #466
This commit is contained in:
FireMasterK 2021-09-21 22:48:55 +01:00
parent 25592c3f2c
commit 4a8927c794
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD

View File

@ -85,11 +85,27 @@
<hr /> <hr />
<label for="chkAutoLoop"><b>{{ $t("actions.loop_this_video") }}:</b></label>&nbsp; <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
>&nbsp;
<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>&nbsp; <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
>&nbsp;
<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";