1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 04:15:55 +02:00
This commit is contained in:
syuilo
2017-11-12 18:27:00 +09:00
parent 0dc459be3d
commit 171dd848da

View File

@@ -73,7 +73,7 @@
};
this.onkeydown = e => {
if (e.which == 10 || e.which == 13) this.post();
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey)) this.post();
};
this.post = () => {