mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
remember the share dialog settings
This commit is contained in:
parent
6f90252904
commit
a84a9435fe
1 changed files with 8 additions and 2 deletions
|
@ -3,11 +3,11 @@
|
|||
<h2 v-t="'actions.share'" />
|
||||
<div class="flex justify-between mt-4">
|
||||
<label v-t="'actions.with_timecode'" for="withTimeCode" />
|
||||
<input id="withTimeCode" type="checkbox" v-model="withTimeCode" />
|
||||
<input id="withTimeCode" type="checkbox" v-model="withTimeCode" @change="onChange" />
|
||||
</div>
|
||||
<div class="flex justify-between">
|
||||
<label v-t="'actions.piped_link'" />
|
||||
<input type="checkbox" v-model="pipedLink" />
|
||||
<input type="checkbox" v-model="pipedLink" @change="onChange" />
|
||||
</div>
|
||||
<div class="flex justify-between mt-2">
|
||||
<label v-t="'actions.time_code'" />
|
||||
|
@ -47,6 +47,8 @@ export default {
|
|||
},
|
||||
mounted() {
|
||||
this.timeStamp = parseInt(this.currentTime);
|
||||
this.withTimeCode = this.getPreferenceBoolean("shareWithTimeCode", true);
|
||||
this.pipedLink = this.getPreferenceBoolean("shareAsPipedLink", true);
|
||||
},
|
||||
methods: {
|
||||
followLink() {
|
||||
|
@ -63,6 +65,10 @@ export default {
|
|||
alert(this.$t("info.cannot_copy"));
|
||||
}
|
||||
},
|
||||
onChange() {
|
||||
localStorage.setItem("shareWithTimeCode", this.withTimeCode);
|
||||
localStorage.setItem("shareAsPipedLink", this.pipedLink);
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
generatedLink() {
|
||||
|
|
Loading…
Reference in a new issue