diff options
| author | ensra <ensra@users.noreply.github.com> | 2018-08-20 02:59:06 +0100 |
|---|---|---|
| committer | ensra <ensra@users.noreply.github.com> | 2018-08-20 02:59:06 +0100 |
| commit | 1121f32c48d06105c976f91545ededca05b283e8 (patch) | |
| tree | 72e745bdc684cd94bca53fd39f75e6c298fe8c97 /src/components/settings/settings.js | |
| parent | 9982376f9a316a5e4224ea44c7392b272f5549d1 (diff) | |
Add support for configurable CW clickthrough.
Diffstat (limited to 'src/components/settings/settings.js')
| -rw-r--r-- | src/components/settings/settings.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/settings/settings.js b/src/components/settings/settings.js index 169b9080..89be1624 100644 --- a/src/components/settings/settings.js +++ b/src/components/settings/settings.js @@ -15,6 +15,7 @@ const settings = { streamingLocal: this.$store.state.config.streaming, pauseOnUnfocusedLocal: this.$store.state.config.pauseOnUnfocused, hoverPreviewLocal: this.$store.state.config.hoverPreview, + expandCWLocal: this.$store.state.config.expandCW, stopGifs: this.$store.state.config.stopGifs, loopSilentAvailable: // Firefox @@ -65,6 +66,9 @@ const settings = { value = filter(value.split('\n'), (word) => trim(word).length > 0) this.$store.dispatch('setOption', { name: 'muteWords', value }) }, + expandCWLocal (value) { + this.$store.dispatch('setOption', { name: 'expandCW', value }) + }, stopGifs (value) { this.$store.dispatch('setOption', { name: 'stopGifs', value }) } |
