This commit is contained in:
syuilo⭐️ 2017-03-10 02:09:18 +09:00 committed by GitHub
parent e5458992f6
commit 8927888174

View file

@ -408,14 +408,17 @@
});
this.reply = () => {
riot.mount(document.body.appendChild(document.createElement('mk-post-form-window')), {
this.openPostForm({
reply: this.p
});
};
this.repost = () => {
riot.mount(document.body.appendChild(document.createElement('mk-repost-form-window')), {
post: this.p
const text = window.prompt(`「${this.summary}」をRepost`);
if (text == null) return;
this.api('posts/create', {
repost_id: this.p.id,
text: text == '' ? undefined : text
});
};