aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings/settings.js
diff options
context:
space:
mode:
authorShpuld Shpuldson <shpuld@gmail.com>2017-06-19 11:32:40 +0300
committerShpuld Shpuldson <shpuld@gmail.com>2017-06-19 11:32:40 +0300
commit3785a863cb27af18fe91403189eff16f662dc2d0 (patch)
treeff1ee977f74e9516fec4ca0691b017ce6f7867ff /src/components/settings/settings.js
parent143aa3b990c0e0fac98c4a097d68e9f7518f1940 (diff)
parent8e5d17a659b157f095ad3850ac3cdd2e537ac38b (diff)
Update branch and fix conflicts.
Diffstat (limited to 'src/components/settings/settings.js')
-rw-r--r--src/components/settings/settings.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/settings/settings.js b/src/components/settings/settings.js
index e4ea56f6..b8aa876b 100644
--- a/src/components/settings/settings.js
+++ b/src/components/settings/settings.js
@@ -8,7 +8,10 @@ const settings = {
hideAttachmentsInConvLocal: this.$store.state.config.hideAttachmentsInConv,
hideNsfwLocal: this.$store.state.config.hideNsfw,
muteWordsString: this.$store.state.config.muteWords.join('\n'),
- previewfile: null
+ previewfile: null,
+ autoLoadLocal: this.$store.state.config.autoLoad,
+ hoverPreviewLocal: this.$store.state.config.hoverPreview,
+ muteWordsString: this.$store.state.config.muteWords.join('\n')
}
},
components: {
@@ -58,6 +61,12 @@ const settings = {
hideNsfwLocal (value) {
this.$store.dispatch('setOption', { name: 'hideNsfw', value })
},
+ autoLoadLocal (value) {
+ this.$store.dispatch('setOption', { name: 'autoLoad', value })
+ },
+ hoverPreviewLocal (value) {
+ this.$store.dispatch('setOption', { name: 'hoverPreview', value })
+ },
muteWordsString (value) {
value = filter(value.split('\n'), (word) => trim(word).length > 0)
this.$store.dispatch('setOption', { name: 'muteWords', value })