From 4720e424a25ebd4f1eef62ce8a159dcef1944cc5 Mon Sep 17 00:00:00 2001 From: Bohung Date: Tue, 11 Jan 2022 10:21:11 +0800 Subject: [PATCH] Fix bug. --- app/views/seminars/_contribute_form.html.erb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/seminars/_contribute_form.html.erb b/app/views/seminars/_contribute_form.html.erb index 4f0613d..b6e1f43 100644 --- a/app/views/seminars/_contribute_form.html.erb +++ b/app/views/seminars/_contribute_form.html.erb @@ -109,7 +109,7 @@ $("form.form-horizontal").submit(function(){ var flag = true; $("div[required=\"required\"]").each(function(i,v){ - if($(v).find("input:checked").length == 0){ + if($(v).find("input").length != 0 && $(v).find("input:checked").length == 0){ $(v).find("input").attr("required","required"); flag = false; }else{ @@ -121,11 +121,11 @@ $("form.form-horizontal [type=\"submit\"]").click(function(){ var flag = true; $("div[required=\"required\"]").each(function(i,v){ - if($(v).find("input:checked").length == 0){ + if($(v).find("input").length != 0 && $(v).find("input:checked").length == 0){ $(v).find("input").attr("required","required"); flag = false; }else{ - $(v).find("input").removeAttr("required") + $(v).find("input").removeAttr("required"); } }) return flag;