fix: validate post's text with Ctrl+Enter on PC.

This commit is contained in:
momf 2018-06-06 09:46:33 +09:00 committed by GitHub
parent ed8fa59639
commit fac6868305
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) {