This commit is contained in:
syuilo
2018-10-12 14:34:54 +09:00
parent dded76099c
commit 9b253ccb3a
6 changed files with 27 additions and 54 deletions

View File

@@ -98,22 +98,6 @@ export default Vue.extend({
required: false,
default: false
}
},
methods: {
reply(viaKeyboard = false) {
(this as any).os.new(MkPostFormWindow, {
reply: this.appearNote,
animation: !viaKeyboard
}).$once('closed', this.focus);
},
renote(viaKeyboard = false) {
(this as any).os.new(MkRenoteFormWindow, {
note: this.appearNote,
animation: !viaKeyboard
}).$once('closed', this.focus);
},
}
});
</script>