summaryrefslogtreecommitdiff
path: root/src/web/app/common
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-05 20:09:26 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-05 20:09:26 +0900
commitab0b650696df075a666137c67ff48a2f526e32d3 (patch)
treeda65ce5dcf72ea205e1df9c077b4e8c4d62ef6ab /src/web/app/common
parentv3988 (diff)
downloadmisskey-ab0b650696df075a666137c67ff48a2f526e32d3.tar.gz
misskey-ab0b650696df075a666137c67ff48a2f526e32d3.tar.bz2
misskey-ab0b650696df075a666137c67ff48a2f526e32d3.zip
#1184
Diffstat (limited to 'src/web/app/common')
-rw-r--r--src/web/app/common/views/components/switch.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/app/common/views/components/switch.vue b/src/web/app/common/views/components/switch.vue
index cfc2f38e2d..19a4adc3de 100644
--- a/src/web/app/common/views/components/switch.vue
+++ b/src/web/app/common/views/components/switch.vue
@@ -56,6 +56,7 @@ export default Vue.extend({
},
watch: {
value() {
+ (this.$el).style.transition = 'all 0.3s';
(this.$refs.input as any).checked = this.checked;
}
},