アニメーション画像を無効にする際、サーバーサイドではなくクライアントサイドでURLを変更するように
This commit is contained in:
parent
f014b7ae0e
commit
861302f0fd
14 changed files with 40 additions and 56 deletions
|
|
@ -518,8 +518,8 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
doNotAutoplayAnimation: {
|
||||
get() { return !!this.$store.state.settings.doNotAutoplayAnimation; },
|
||||
set(value) { this.$store.dispatch('settings/set', { key: 'doNotAutoplayAnimation', value }); }
|
||||
get() { return this.$store.state.device.doNotAutoplayAnimation; },
|
||||
set(value) { this.$store.commit('device/set', { key: 'doNotAutoplayAnimation', value }); }
|
||||
},
|
||||
|
||||
remainDeletedNote: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue