diff --git a/src/client/app/desktop/views/components/timeline.vue b/src/client/app/desktop/views/components/timeline.vue index 6a243ca56..27d329d13 100644 --- a/src/client/app/desktop/views/components/timeline.vue +++ b/src/client/app/desktop/views/components/timeline.vue @@ -33,17 +33,11 @@ export default Vue.extend({ watch: { src() { - this.$store.commit('device/setTl', { - src: this.src, - arg: this.list - }); + this.saveSrc(); }, list() { - this.$store.commit('device/setTl', { - src: this.src, - arg: this.list - }); + this.saveSrc(); } }, @@ -65,6 +59,13 @@ export default Vue.extend({ }, methods: { + saveSrc() { + this.$store.commit('device/setTl', { + src: this.src, + arg: this.list + }); + }, + warp(date) { (this.$refs.tl as any).warp(date); }, diff --git a/src/client/app/mobile/views/pages/home.vue b/src/client/app/mobile/views/pages/home.vue index 8d10d96c8..33579185e 100644 --- a/src/client/app/mobile/views/pages/home.vue +++ b/src/client/app/mobile/views/pages/home.vue @@ -64,20 +64,12 @@ export default Vue.extend({ watch: { src() { this.showNav = false; - - this.$store.commit('device/setTl', { - src: this.src, - arg: this.list - }); + this.saveSrc(); }, list() { this.showNav = false; - - this.$store.commit('device/setTl', { - src: this.src, - arg: this.list - }); + this.saveSrc(); }, showNav(v) { @@ -115,6 +107,13 @@ export default Vue.extend({ (this as any).apis.post(); }, + saveSrc() { + this.$store.commit('device/setTl', { + src: this.src, + arg: this.list + }); + }, + warp() { }