This commit is contained in:
syuilo 2018-10-12 14:34:54 +09:00
parent dded76099c
commit 9b253ccb3a
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
6 changed files with 27 additions and 54 deletions

View file

@ -82,22 +82,6 @@ export default Vue.extend({
type: Object,
required: true
}
},
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>