Skip to content

Commit 560216b

Browse files
authored
Merge pull request #1447 from openjournals/xuanxu-jcon-patch
Fix inactive "Submit paper" button
2 parents 4d0decd + d512594 commit 560216b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/javascript/custom/papers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var authorCheck, setPaperSize;
44
authorCheck = function() {
55
var checkBoxCount;
66
checkBoxCount = $(".pre-check:checked").length;
7-
if (checkBoxCount === 3) {
7+
if (checkBoxCount === 2) {
88
$("#author-submit").removeClass('disabled');
99
$("#author-submit").prop('disabled', false);
1010
} else {

0 commit comments

Comments
 (0)