mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 03:47:40 -07:00
Fix bug
This commit is contained in:
parent
4c01dbb9fa
commit
f100b87e38
1 changed files with 1 additions and 1 deletions
|
@ -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 = () => {
|
||||
|
|
Loading…
Reference in a new issue