Merge pull request #1678 from 2vg/patch-2

fix: validate post's text with Ctrl+Enter on PC.
This commit is contained in:
syuilo 2018-06-06 09:50:17 +09:00 committed by GitHub
commit a0ec6b8ea7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -209,7 +209,7 @@ export default Vue.extend({
},
onKeydown(e) {
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey)) this.post();
if ((e.which == 10 || e.which == 13) && (e.ctrlKey || e.metaKey) && canPost) this.post();
},
onPaste(e) {